    :root {
      --background: #101010;
      --foreground: #f4f4f4;
      --card: #171717;
      --primary: oklch(60% .23 25);
      --primary-foreground: #ffffff;
      --secondary: #151515;
      --secondary-foreground: #f5f5f5;
      --border: #303030;
      --container: 1280px;
      --radius: 10px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--background);
      color: var(--foreground);
      font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      border: 0;
      background: none;
      color: inherit;
      cursor: pointer;
      font: inherit;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: Poppins, system-ui, sans-serif;
      line-height: 1.15;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 42%, rgba(255, 255, 255, 0.03)),
        rgba(0, 0, 0, 0.7);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: transform 300ms ease, opacity 300ms ease, background 220ms ease;
    }

    .site-header::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--primary) 44%, transparent), transparent);
      pointer-events: none;
    }

    .site-header.is-hidden {
      transform: translateY(-100%);
      opacity: 0;
    }

    .nav {
      position: relative;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-left,
    .nav-links,
    .nav-actions,
    .button {
      display: flex;
      align-items: center;
    }

    .nav-left {
      gap: 22px;
    }

    .nav-actions {
      gap: 14px;
    }

    .search-wrap {
      position: relative;
      width: clamp(220px, 24vw, 320px);
    }

    .search-form {
      position: relative;
      display: flex;
      align-items: center;
    }

    .search-form img {
      position: absolute;
      left: 14px;
      width: 16px;
      height: 16px;
      opacity: 0.72;
      pointer-events: none;
    }

    .search-form input {
      width: 100%;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
      color: #fff;
      outline: none;
      padding: 0 16px 0 40px;
      font-size: 0.92rem;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .search-form input::placeholder {
      color: rgba(255, 255, 255, 0.56);
    }

    .search-form input:focus {
      border-color: color-mix(in oklab, var(--primary) 58%, rgba(255, 255, 255, 0.18));
      background: rgba(255, 255, 255, 0.13);
      box-shadow:
        0 0 0 3px color-mix(in oklab, var(--primary) 18%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .search-preview {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      z-index: 70;
      display: none;
      width: min(360px, 88vw);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      background: rgba(13, 13, 13, 0.96);
      box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .search-preview.open {
      display: block;
    }

    .preview-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 12px;
      width: 100%;
      align-items: center;
      padding: 12px;
      text-align: left;
      transition: background 160ms ease;
    }

    .preview-item:hover,
    .preview-item:focus {
      background: rgba(255, 255, 255, 0.08);
      outline: none;
    }

    .preview-item img {
      width: 54px;
      height: 54px;
      border-radius: 10px;
      object-fit: cover;
      background: rgba(255, 255, 255, 0.06);
    }

    .preview-item strong {
      display: block;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
    }

    .preview-item span,
    .preview-empty {
      color: rgba(244, 244, 244, 0.68);
      font-size: 0.85rem;
    }

    .preview-empty {
      padding: 16px;
      text-align: center;
    }

    .logo {
      display: flex;
      align-items: center;
      min-height: 44px;
      padding: 7px 12px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.055);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    .logo:hover {
      border-color: color-mix(in oklab, var(--primary) 40%, rgba(255, 255, 255, 0.12));
      background: rgba(255, 255, 255, 0.085);
      transform: translateY(-1px);
    }

    .logo img {
      width: auto;
      height: 30px;
    }

    .nav-links {
      gap: 4px;
      padding: 4px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.045);
    }

    .nav-links a,
    .mobile-menu a {
      color: #fff;
      font-size: 0.875rem;
      font-weight: 600;
      transition: color 180ms ease, background 180ms ease;
    }

    .nav-links a {
      padding: 9px 15px;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.78);
    }

    .nav-links a:hover,
    .mobile-menu a:hover,
    footer a:hover {
      color: var(--primary);
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.075);
      color: #fff;
    }

    .button {
      position: relative;
      isolation: isolate;
      justify-content: center;
      gap: 8px;
      width: fit-content;
      min-height: 40px;
      border-radius: 8px;
      background: var(--primary);
      color: var(--primary-foreground);
      font-weight: 600;
      transition: opacity 180ms ease, transform 250ms ease;
    }

    .distributor-trigger {
      overflow: visible;
    }

    .distributor-trigger::before,
    .distributor-trigger::after {
      content: "";
      position: absolute;
      pointer-events: none;
      opacity: 0;
      transition: opacity 180ms ease;
    }

    .distributor-trigger::before {
      inset: -4px;
      z-index: -1;
      border-radius: 12px;
      padding: 2px;
      background: conic-gradient(from var(--highlight-angle, 0deg),
          transparent 0deg,
          transparent 62deg,
          rgba(255, 255, 255, 0.95) 82deg,
          color-mix(in oklab, var(--primary) 86%, #ffdfdf) 108deg,
          transparent 146deg,
          transparent 360deg);
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .distributor-trigger::after {
      inset: -12px;
      z-index: -2;
      border-radius: 18px;
      background:
        radial-gradient(circle, color-mix(in oklab, var(--primary) 44%, transparent), transparent 66%);
      filter: blur(8px);
    }

    .distributor-trigger.highlight-pulse {
      opacity: 1;
      box-shadow:
        0 0 0 1px color-mix(in oklab, var(--primary) 60%, rgba(255, 255, 255, 0.18)),
        0 0 18px color-mix(in oklab, var(--primary) 48%, transparent),
        0 14px 34px rgba(0, 0, 0, 0.26);
      animation: distributorButtonPop 3200ms cubic-bezier(0.22, 0.72, 0.22, 1) both;
    }

    .distributor-trigger.highlight-pulse::before {
      opacity: 1;
      animation: distributorRingSpin 3200ms cubic-bezier(0.22, 0.72, 0.22, 1) both;
    }

    .distributor-trigger.highlight-pulse::after {
      opacity: 1;
      animation: distributorGlowPulse 3200ms cubic-bezier(0.22, 0.72, 0.22, 1) both;
    }

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

    @keyframes distributorRingSpin {
      0% {
        --highlight-angle: 0deg;
        opacity: 0;
      }

      16% {
        opacity: 0.45;
      }

      34% {
        opacity: 1;
      }

      74% {
        opacity: 0.82;
      }

      100% {
        --highlight-angle: 360deg;
        opacity: 0;
      }
    }

    @keyframes distributorGlowPulse {
      0% {
        opacity: 0;
        transform: scale(0.88);
      }

      20% {
        opacity: 0.32;
        transform: scale(0.94);
      }

      42% {
        opacity: 0.72;
        transform: scale(0.98);
      }

      72% {
        opacity: 0.46;
        transform: scale(1);
      }

      100% {
        opacity: 0;
        transform: scale(1.04);
      }
    }

    @keyframes distributorButtonPop {
      0% {
        transform: translateY(0) scale(1);
      }

      18% {
        transform: translateY(-0.5px) scale(1.006);
      }

      42% {
        transform: translateY(-1px) scale(1.012);
      }

      72% {
        transform: translateY(-0.5px) scale(1.006);
      }

      100% {
        transform: translateY(0) scale(1);
      }
    }

    .button.info {
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.11);
      color: #fff;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .button.info:hover {
      border-color: color-mix(in oklab, var(--primary) 44%, rgba(255, 255, 255, 0.2));
      background: rgba(255, 255, 255, 0.16);
    }

    .button:hover {
      opacity: 0.92;
      transform: scale(1.04);
    }

    .button.small {
      padding: 8px 24px;
      font-size: 0.95rem;
    }

    .button.large {
      padding: 16px 32px;
      font-size: 1rem;
    }

    .button img {
      width: 18px;
      height: 18px;
      object-fit: contain;
    }

    .button svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .hero-actions,
    .product-actions,
    .modal-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .modal-actions {
      align-items: stretch;
      margin-top: 4px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .modal-actions .button {
      min-height: 50px;
    }

    .menu-button {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      place-items: center;
      transition: background 180ms ease, border-color 180ms ease;
    }

    .menu-button:hover {
      border-color: color-mix(in oklab, var(--primary) 42%, rgba(255, 255, 255, 0.12));
      background: rgba(255, 255, 255, 0.11);
    }

    .mobile-menu {
      display: none;
      padding: 0 16px 18px;
    }

    .mobile-menu-inner {
      display: grid;
      gap: 12px;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.055);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    }

    .mobile-menu-inner > a:not(.button) {
      padding: 11px 12px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.045);
    }

    .mobile-menu .button {
      width: 100%;
    }

    .hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.56)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
        url("Images/plantbackground.jpg");
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
      color: #fff;
    }

    .hero-inner {
      min-height: 100vh;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
      align-items: center;
      gap: 48px;
      padding-block: 96px 72px;
    }

    .hero-copy,
    .hero-product {
      transition: opacity 300ms ease, transform 300ms ease;
    }

    .hero.is-changing .hero-copy,
    .hero.is-changing .hero-product {
      opacity: 0;
      transform: translateY(10px);
    }

    .eyebrow {
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .hero h1 {
      margin-top: 8px;
      font-size: clamp(3rem, 7vw, 4.5rem);
      font-weight: 800;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    }

    .hero p.description {
      max-width: 560px;
      margin-block: 24px;
      color: rgba(255, 255, 255, 0.95);
      font-size: clamp(1.125rem, 2vw, 1.25rem);
      line-height: 1.65;
    }

    .hero-product {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 360px;
    }

    .hero-product.has-video {
      overflow: hidden;
      border-radius: 8px;
      filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.28));
    }

    .hero-product.has-video video {
      width: min(100%, 680px);
      max-height: 620px;
    }

    .hero-product img,
    .hero-product video {
      width: min(100%, 520px);
      max-height: 440px;
      object-fit: contain;
      border-radius: 8px;
      filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.28));
    }

    .hero-product video {
      display: block;
      border-radius: 8px;
      background: transparent;
      clip-path: inset(0 round 8px);
      filter: none;
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      z-index: 10;
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      backdrop-filter: blur(10px);
      transform: translateY(-50%);
      transition: opacity 180ms ease, background 180ms ease;
    }

    .slider-arrow:hover {
      background: rgba(255, 255, 255, 0.23);
    }

    .slider-arrow.prev {
      left: 32px;
    }

    .slider-arrow.next {
      right: 32px;
    }

    .slider-dots {
      position: absolute;
      bottom: 24px;
      left: 50%;
      display: flex;
      gap: 8px;
      transform: translateX(-50%);
    }

    .slider-dots button {
      width: 8px;
      height: 8px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.32);
      backdrop-filter: blur(10px);
      transition: width 200ms ease, background 200ms ease;
    }

    .slider-dots button.active {
      width: 32px;
      background: rgba(255, 255, 255, 0.9);
    }

    section {
      scroll-margin-top: 80px;
    }

    .section {
      padding-block: 80px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
      align-items: center;
      gap: 64px;
    }

    .brand-mark {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 420px;
      order: 1;
    }

    .brand-orbit {
      position: absolute;
      width: min(84%, 380px);
      aspect-ratio: 1;
      border: 1px solid color-mix(in oklab, var(--primary) 34%, transparent);
      border-radius: 999px;
      background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 54%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    }

    .brand-card {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      gap: 22px;
      width: min(100%, 360px);
      padding: 38px 30px 28px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.055);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .brand-card img {
      width: 230px;
      height: 230px;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .brand-card-caption {
      width: 100%;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }

    .brand-card-caption span {
      display: block;
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .brand-card-caption strong {
      display: block;
      margin-top: 6px;
      color: #fff;
      font-family: Poppins, system-ui, sans-serif;
      font-size: 1.05rem;
    }

    .section-copy {
      order: 2;
    }

    .heading-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      color: var(--primary);
    }

    .heading-row svg {
      width: 32px;
      height: 32px;
      flex: 0 0 auto;
    }

    .heading-row h2 {
      color: var(--primary);
      font-size: clamp(2.25rem, 5vw, 3rem);
      font-weight: 800;
    }

    .section-copy p {
      margin-top: 18px;
      color: rgba(244, 244, 244, 0.88);
      font-size: 1.125rem;
      line-height: 1.65;
    }

    .section-copy .about-lead {
      max-width: 720px;
      color: #fff;
      font-family: Poppins, system-ui, sans-serif;
      font-size: clamp(1.45rem, 3vw, 2rem);
      font-weight: 700;
      line-height: 1.35;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .about-highlights div {
      min-height: 150px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.045);
    }

    .about-highlights strong {
      display: block;
      color: var(--primary);
      font-family: Poppins, system-ui, sans-serif;
      font-size: 1rem;
    }

    .about-highlights span {
      display: block;
      margin-top: 10px;
      color: rgba(244, 244, 244, 0.74);
      font-size: 0.94rem;
      line-height: 1.55;
    }

    .products-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 8%, color-mix(in oklab, var(--primary) 16%, transparent), transparent 28%),
        linear-gradient(180deg, #151515 0%, #101010 52%, #151515 100%);
    }

    .products-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
      opacity: 0.32;
    }

    .products-section .container {
      position: relative;
      z-index: 1;
    }

    .empty-results {
      display: grid;
      place-items: center;
      min-height: 260px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.045);
      text-align: center;
      padding: 32px;
    }

    .empty-results img {
      width: 42px;
      height: 42px;
      margin: 0 auto 16px;
      opacity: 0.82;
    }

    .empty-results h3 {
      color: #fff;
      font-size: 1.35rem;
      font-weight: 800;
    }

    .empty-results p {
      max-width: 440px;
      margin-top: 8px;
      color: rgba(244, 244, 244, 0.68);
    }

    .section-intro {
      max-width: 720px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .section-intro .heading-row {
      justify-content: center;
      margin-bottom: 16px;
    }

    .section-intro p {
      color: rgba(244, 244, 244, 0.88);
      font-size: 1.125rem;
    }

    .products-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(250px, 380px);
      gap: 32px;
      align-items: end;
      margin-bottom: 48px;
    }

    .products-heading {
      max-width: 760px;
    }

    .products-heading .heading-row {
      margin-bottom: 18px;
    }

    .products-heading p {
      max-width: 680px;
      color: rgba(244, 244, 244, 0.82);
      font-size: clamp(1.05rem, 2vw, 1.22rem);
      line-height: 1.65;
    }

    .products-note {
      display: grid;
      gap: 10px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .products-note span {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(244, 244, 244, 0.82);
      font-size: 0.95rem;
      font-weight: 600;
    }

    .products-note span::before {
      content: "";
      width: 8px;
      height: 8px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 18px color-mix(in oklab, var(--primary) 70%, transparent);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
    }

    .product-card {
      overflow: hidden;
      position: relative;
      display: grid;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(18, 18, 18, 0.96);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
      transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
    }

    .product-card:hover {
      border-color: color-mix(in oklab, var(--primary) 56%, rgba(255, 255, 255, 0.1));
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
        rgba(20, 20, 20, 0.98);
      box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
      transform: translateY(-5px);
    }

    .product-card:focus-visible {
      outline: none;
      border-color: color-mix(in oklab, var(--primary) 72%, rgba(255, 255, 255, 0.12));
      box-shadow:
        0 0 0 3px color-mix(in oklab, var(--primary) 18%, transparent),
        0 28px 64px rgba(0, 0, 0, 0.34);
    }

    .product-card .button {
      cursor: pointer;
    }

    .product-image {
      position: relative;
      height: clamp(300px, 31vw, 410px);
      overflow: hidden;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.13), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        #1b1b1b;
    }

    .product-image::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
      pointer-events: none;
    }

    .product-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 1;
      padding: 7px 12px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.28);
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 26px;
      filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.28));
      transition: transform 500ms ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.06);
    }

    .product-body {
      display: grid;
      align-content: start;
      gap: 18px;
      padding: 24px;
    }

    .product-title-row {
      display: grid;
      gap: 8px;
      align-items: start;
    }

    .product-title-row span {
      width: fit-content;
      padding: 6px 10px;
      border: 1px solid color-mix(in oklab, var(--primary) 34%, rgba(255, 255, 255, 0.08));
      border-radius: 999px;
      background: color-mix(in oklab, var(--primary) 12%, transparent);
      color: var(--primary);
      font-family: Poppins, system-ui, sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .product-body h3 {
      color: #fff;
      font-size: clamp(1.22rem, 2vw, 1.45rem);
      font-weight: 800;
    }

    .product-body p {
      color: rgba(244, 244, 244, 0.72);
      font-size: 0.95rem;
      line-height: 1.62;
    }

    .product-actions {
      margin-top: 2px;
    }

    .product-actions .button {
      min-width: 128px;
    }

    .share-product-btn {
      min-width: 172px;
    }

    .share-feedback {
      min-height: 22px;
      margin-top: -12px;
      color: color-mix(in oklab, var(--primary) 62%, #fff);
      font-size: 0.92rem;
      font-weight: 600;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(0, 0, 0, 0.48);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 220ms ease;
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .product-modal {
      position: relative;
      width: min(100%, 1120px);
      max-height: min(94vh, 860px);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(25, 25, 25, 0.98), rgba(12, 12, 12, 0.96)),
        rgba(16, 16, 16, 0.96);
      box-shadow: 0 34px 110px rgba(0, 0, 0, 0.54);
      transform: translateY(14px) scale(0.98);
      transition: transform 220ms ease;
    }

    .modal-overlay.open .product-modal {
      transform: translateY(0) scale(1);
    }

    .modal-overlay.open .search-modal {
      transform: translateY(0) scale(1);
    }

    .modal-overlay.open .distributor-modal {
      transform: translateY(0) scale(1);
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      transition: background 180ms ease, transform 180ms ease;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: scale(1.04);
    }

    .modal-content {
      display: grid;
      grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.32fr);
      gap: 0;
      align-items: stretch;
      max-height: min(94vh, 860px);
      overflow-y: auto;
      padding: 0;
    }

    .modal-image-wrap {
      display: grid;
      place-items: center;
      min-height: 560px;
      border-right: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 0;
      background:
        radial-gradient(circle at 50% 24%, rgba(186, 30, 37, 0.18), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    }

    .modal-image-wrap img {
      width: min(86%, 430px);
      max-height: 500px;
      object-fit: contain;
      filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.4));
    }

    .modal-copy {
      display: grid;
      align-content: center;
      gap: 22px;
      padding: 48px 58px 42px;
    }

    .modal-copy h2 {
      color: #fff;
      font-size: clamp(2rem, 4vw, 3.08rem);
      font-weight: 800;
      line-height: 1.05;
    }

    .modal-copy p {
      color: rgba(244, 244, 244, 0.76);
      font-size: 1.04rem;
      line-height: 1.7;
    }

    .modal-copy > p {
      max-width: 640px;
    }

    .search-modal {
      position: relative;
      width: min(100%, 1180px);
      max-height: min(92vh, 860px);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      background: rgba(16, 16, 16, 0.95);
      box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
      transform: translateY(14px) scale(0.98);
      transition: transform 220ms ease;
    }

    .search-modal-content {
      max-height: min(92vh, 860px);
      overflow-y: auto;
      padding: 42px;
    }

    .search-modal-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
      padding-right: 48px;
    }

    .search-modal-header h2 {
      margin-top: 6px;
      color: #fff;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
    }

    .search-modal-header p:not(.eyebrow) {
      margin-top: 10px;
      color: rgba(244, 244, 244, 0.72);
      font-size: 1rem;
    }

    .search-modal .product-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .search-modal .empty-results {
      min-height: 360px;
    }

    .distributor-modal {
      width: min(100%, 1040px);
    }

    .distributor-modal-content {
      padding-bottom: 34px;
    }

    .distributor-modal-header {
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      padding-bottom: 26px;
    }

    .distributor-icon {
      display: grid;
      place-items: center;
      width: 76px;
      height: 76px;
      flex: 0 0 auto;
      border: 1px solid color-mix(in oklab, var(--primary) 34%, rgba(255, 255, 255, 0.12));
      border-radius: 18px;
      background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.14), transparent 58%),
        rgba(255, 255, 255, 0.06);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    }

    .distributor-icon img {
      width: 34px;
      height: 34px;
      object-fit: contain;
    }

    .distributor-form {
      display: grid;
      gap: 26px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .distributor-form label {
      display: grid;
      gap: 8px;
    }

    .distributor-form label > span:not(.field-control) {
      color: rgba(244, 244, 244, 0.82);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .distributor-form label small {
      color: rgba(244, 244, 244, 0.48);
      font-size: 0.78rem;
      font-weight: 600;
    }

    .field-control {
      position: relative;
      display: block;
    }

    .field-control::before {
      content: "";
      position: absolute;
      top: 24px;
      left: 15px;
      z-index: 1;
      width: 18px;
      height: 18px;
      background: rgba(255, 255, 255, 0.58);
      -webkit-mask: var(--field-icon) center / contain no-repeat;
      mask: var(--field-icon) center / contain no-repeat;
      opacity: 0.82;
      pointer-events: none;
      transform: translateY(-50%);
      transition: background 180ms ease, opacity 180ms ease;
    }

    .icon-message::before {
      top: 24px;
      transform: none;
    }

    .icon-user {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
    }

    .icon-mail {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
    }

    .icon-phone {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.08 5.18 2 2 0 0 1 5.06 3h3a2 2 0 0 1 2 1.72c.12.9.32 1.78.58 2.62a2 2 0 0 1-.45 2.11L9 10.64a16 16 0 0 0 4.36 4.36l1.19-1.19a2 2 0 0 1 2.11-.45c.84.26 1.72.46 2.62.58A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
    }

    .icon-document {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h8M8 17h6'/%3E%3C/svg%3E");
    }

    .icon-location {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    }

    .icon-map {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18 3 21V6l6-3 6 3 6-3v15l-6 3-6-3Z'/%3E%3Cpath d='M9 3v15M15 6v15'/%3E%3C/svg%3E");
    }

    .icon-briefcase {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M3 12h18'/%3E%3C/svg%3E");
    }

    .icon-box {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 8-9-5-9 5 9 5 9-5Z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3C/svg%3E");
    }

    .icon-message {
      --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z'/%3E%3Cpath d='M8 9h8M8 13h5'/%3E%3C/svg%3E");
    }

    .distributor-form input,
    .distributor-form select,
    .distributor-form textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.065);
      color: #fff;
      outline: none;
      padding: 0 14px 0 46px;
      font: inherit;
      transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .distributor-form textarea {
      min-height: 132px;
      resize: vertical;
      padding-block: 13px;
      line-height: 1.55;
    }

    .distributor-form select {
      color-scheme: dark;
      appearance: none;
      background:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%) calc(100% - 20px) 52% / 7px 7px no-repeat,
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%) calc(100% - 15px) 52% / 7px 7px no-repeat,
        rgba(255, 255, 255, 0.065);
      padding-right: 44px;
    }

    .distributor-form select option {
      background: #171717;
      color: #fff;
    }

    .distributor-form select option:checked,
    .distributor-form select option:hover {
      background: color-mix(in oklab, var(--primary) 45%, #171717);
      color: #fff;
    }

    .distributor-form input::placeholder,
    .distributor-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.42);
    }

    .distributor-form input:focus,
    .distributor-form select:focus,
    .distributor-form textarea:focus {
      border-color: color-mix(in oklab, var(--primary) 58%, rgba(255, 255, 255, 0.18));
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 16%, transparent);
    }

    .field-control:focus-within::before {
      background: rgba(255, 255, 255, 0.86);
      opacity: 1;
    }

    .form-wide {
      grid-column: 1 / -1;
    }

    .form-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .form-footer p {
      max-width: 520px;
      color: rgba(244, 244, 244, 0.62);
      font-size: 0.92rem;
      line-height: 1.55;
    }

    .usage-box {
      display: grid;
      grid-template-columns: minmax(118px, 0.32fr) minmax(0, 1fr);
      align-items: start;
      gap: 20px;
      margin-top: 2px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.105);
      border-left: 3px solid rgba(186, 30, 37, 0.82);
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.035);
    }

    .usage-box h3 {
      color: var(--primary);
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.25;
    }

    .usage-box p {
      font-size: 0.97rem;
      line-height: 1.68;
    }

    footer {
      background: var(--secondary);
      color: var(--secondary-foreground);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 32px;
      padding-block: 48px 32px;
    }

    footer h3 {
      margin-bottom: 8px;
      color: #fff;
      font-size: 1.25rem;
      font-weight: 800;
    }

    footer h4 {
      margin-bottom: 16px;
      font-weight: 700;
    }

    footer p,
    footer a {
      color: rgba(245, 245, 245, 0.8);
      font-size: 0.95rem;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .socials {
      display: flex;
      gap: 16px;
    }

    .socials a {
      color: var(--secondary-foreground);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-block: 32px;
    }

    .fade-up {
      animation: fadeUp 600ms ease both;
    }

    .fade-left {
      animation: fadeLeft 600ms ease both;
    }

    .fade-right {
      animation: fadeRight 600ms ease both;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

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

    @keyframes fadeLeft {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

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

    @keyframes fadeRight {
      from {
        opacity: 0;
        transform: translateX(20px);
      }

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

    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--background);
    }

    ::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background: var(--primary);
    }

    @media (max-width: 980px) {

      .hero-inner,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        gap: 28px;
        padding-top: 104px;
      }

      .hero-product {
        min-height: 280px;
      }

      .hero-product.has-video {
        min-height: 420px;
      }

      .hero-product.has-video video {
        width: min(100%, 560px);
        max-height: 520px;
      }

      .brand-mark,
      .section-copy {
        order: initial;
      }

      .brand-mark {
        min-height: 340px;
      }

      .brand-card {
        width: min(100%, 340px);
      }

      .about-highlights {
        grid-template-columns: 1fr;
      }

      .products-header {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .products-note {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {

      .nav-links,
      .nav-actions .button {
        display: none;
      }

      .nav {
        gap: 12px;
        height: 68px;
      }

      .nav-left {
        gap: 10px;
      }

      .search-wrap {
        width: min(42vw, 220px);
      }

      .search-form input {
        height: 38px;
        font-size: 0.85rem;
      }

      .menu-button {
        display: grid;
      }

      .mobile-menu.open {
        display: block;
      }

      .hero {
        background-attachment: scroll;
      }

      .hero-inner {
        min-height: auto;
        padding-block: 112px 92px;
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .hero h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
      }

      .slider-arrow {
        top: auto;
        bottom: 210px;
        width: 42px;
        height: 42px;
        transform: none;
      }

      .hero.has-video .slider-arrow {
        bottom: 258px;
      }

      .slider-arrow.prev {
        left: 12px;
      }

      .slider-arrow.next {
        right: 12px;
      }

      .product-grid,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .products-header {
        margin-bottom: 32px;
      }

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

      .product-image {
        height: clamp(280px, 86vw, 390px);
      }

      .modal-content {
        grid-template-columns: 1fr;
        gap: 0;
        max-height: calc(100dvh - 28px);
        padding: 0;
        padding-top: 52px;
      }

      .modal-image-wrap {
        min-height: 270px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      }

      .modal-image-wrap img {
        width: min(82%, 320px);
        max-height: 270px;
      }

      .modal-copy {
        gap: 18px;
        padding: 28px;
      }

      .usage-box {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .modal-actions {
        flex-direction: column;
      }

      .modal-actions .button {
        width: 100%;
      }

      .search-modal {
        max-height: calc(100dvh - 28px);
      }

      .search-modal-content {
        max-height: calc(100dvh - 28px);
        padding: 28px;
        padding-top: 62px;
      }

      .search-modal-header {
        align-items: flex-start;
        flex-direction: column;
        padding-right: 0;
      }

      .search-modal .product-grid {
        grid-template-columns: 1fr;
      }

      .distributor-modal-header {
        align-items: flex-start;
      }

      .distributor-icon {
        display: none;
      }

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

      .form-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .form-footer .button {
        width: 100%;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 480px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .search-wrap {
        width: min(47vw, 180px);
      }

      .brand-mark {
        min-height: 300px;
      }

      .brand-orbit {
        width: min(92%, 300px);
      }

      .brand-card {
        padding: 28px 22px 22px;
      }

      .brand-card img {
        width: 190px;
        height: 190px;
      }

      .about-highlights div {
        min-height: auto;
      }

      .button.large {
        width: 100%;
      }

      .product-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .product-actions .button {
        width: 100%;
      }

      .modal-overlay {
        align-items: start;
        padding: 14px;
        overflow-y: auto;
      }

      .product-modal {
        max-height: calc(100dvh - 28px);
      }

      .modal-close {
        position: sticky;
        top: 14px;
        float: right;
        margin: 0 14px -52px auto;
      }

      .hero-product img,
      .hero-product video {
        max-height: 320px;
      }

      .hero-product.has-video video {
        width: min(100%, 92vw);
        max-height: 520px;
      }

      .hero.has-video .slider-arrow {
        bottom: 286px;
      }

      .heading-row {
        align-items: flex-start;
      }
    }
