:root {
      color-scheme: light;
    }

    * {
      box-sizing: border-box;
    }

    
    @media (prefers-reduced-motion: reduce) {
      html:focus-within,
      body,
      .canvas {
        scroll-behavior: auto !important;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-delay: 0ms !important;
        transition-duration: 0.01ms !important;
      }
    }
  

    body {
      margin: 0;
      min-height: 100vh;
      padding: 0;
      background-color: #fff4ef;
      background-image: none;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      color: #181412;
      font-family: Inter, Arial, sans-serif;
    }

    .canvas {
      width: 100%;
      min-height: 100vh;
      margin: 0;
      padding: 0;
      background: #ffffff;
      border: 0;
    }

    [data-nav-sticky-host="true"] {
      position: sticky !important;
      top: var(--nav-sticky-offset, 0px) !important;
      z-index: 100;
    }

    

    [data-has-background-video="true"] {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    [data-has-background-video="true"] > :not(.editor-background-video-layer):not(.site-background-video-layer):not(.editor-parallax-background-layer):not(.site-parallax-background-layer) {
      position: relative;
      z-index: 2;
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 56px;
      border: 1px solid var(--nav-border, #d8c8b4);
      background: var(--nav-bg, #ffffff);
      color: var(--nav-text, #181412);
      padding: var(--nav-padding-y, 10px) var(--nav-padding-x, 14px);
      font-family: var(--nav-font, Inter, Arial, sans-serif);
      font-size: var(--nav-font-size, 14px);
    }

    .site-nav-list {
      display: flex;
      align-items: center;
      gap: var(--nav-row-gap, 0px) var(--nav-link-gap, 8px);
      margin: 0;
      padding: 0;
      list-style: none;
      width: 100%;
      justify-content: var(--nav-justify, flex-start);
    }

    .site-nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 4px;
      width: 42px;
      height: 42px;
      border: 1px solid var(--nav-border, #d8c8b4);
      border-radius: 12px;
      background: transparent;
      color: inherit;
      cursor: pointer;
    }

    .site-nav-toggle span {
      display: block;
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    @media (max-width: 1180px) {
      .site-nav-list {
        justify-content: var(--nav-justify-laptop, var(--nav-justify, flex-start));
      }
    }

    @media (max-width: 900px) {
      .site-nav {
        flex-wrap: wrap;
        align-items: flex-start;
      }

      .site-nav-toggle {
        display: inline-flex;
        flex-direction: column;
        margin-left: auto;
      }

      .site-nav-list {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: var(--nav-justify-mobile, var(--nav-justify-tablet, var(--nav-justify-laptop, var(--nav-justify, flex-start))));
      }

      .site-nav[data-nav-open="true"] .site-nav-list {
        display: flex;
      }

      .site-nav-item,
      .site-nav-link {
        width: 100%;
      }

      .site-nav-submenu {
        position: static;
        min-width: 0;
        margin-top: 6px;
      }

      .site-nav-item[data-nav-submenu-open="true"] > .site-nav-submenu {
        display: grid;
      }
    }

    @media (max-width: 900px) {
      .site-nav-mega .site-nav-submenu {
        grid-template-columns: 1fr;
      }
    }

    .site-nav-item {
      position: relative;
    }

    .site-nav-item-has-children {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .site-nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      border-radius: var(--nav-link-radius, 8px);
      padding: 6px 10px;
      background: var(--nav-link-bg, transparent);
      color: var(--nav-link-text, inherit);
      font-size: var(--nav-font-size, 14px);
      text-decoration: none;
      white-space: nowrap;
    }

    .site-nav-link:hover {
      background: var(--nav-hover-bg, #f6f1eb);
      color: var(--nav-hover-text, #171411);
    }

    .site-nav-link[data-nav-missing-destination="true"] {
      cursor: not-allowed;
      opacity: 0.58;
      text-decoration: line-through;
      text-decoration-thickness: 1px;
    }

    .site-nav-link-active,
    .site-nav-link[data-nav-active="true"],
    .site-nav-link[data-nav-section-active="true"],
    .site-nav-link-ancestor-active,
    .site-nav-link[data-nav-ancestor-active="true"] {
      background: var(--nav-active-bg, transparent);
      color: var(--nav-active-text, #171411);
    }

    .site-nav-link-active::after,
    .site-nav-link[data-nav-active="true"]::after,
    .site-nav-link[data-nav-section-active="true"]::after {
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 2px;
      height: 1px;
      background: currentColor;
    }

    .site-nav[data-nav-active-indicator="none"] .site-nav-link-active::after,
    .site-nav[data-nav-active-indicator="none"] .site-nav-link[data-nav-active="true"]::after,
    .site-nav[data-nav-active-indicator="none"] .site-nav-link[data-nav-section-active="true"]::after,
    .site-nav[data-nav-active-indicator="pill"] .site-nav-link-active::after,
    .site-nav[data-nav-active-indicator="pill"] .site-nav-link[data-nav-active="true"]::after,
    .site-nav[data-nav-active-indicator="pill"] .site-nav-link[data-nav-section-active="true"]::after {
      content: none;
    }

    .site-nav-submenu-toggle {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 34px;
      margin-left: -8px;
      border: 0;
      border-radius: var(--nav-link-radius, 8px);
      background: transparent;
      color: inherit;
      cursor: pointer;
    }

    .site-nav-submenu-toggle:hover,
    .site-nav-submenu-toggle:focus-visible {
      background: var(--nav-hover-bg, #f6f1eb);
      color: var(--nav-hover-text, #171411);
      outline: 2px solid currentColor;
      outline-offset: 1px;
    }

    .site-nav-submenu-caret {
      width: 0.48em;
      height: 0.48em;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: translateY(-0.12em) rotate(45deg);
      transition: transform 140ms ease;
    }

    .site-nav-submenu-toggle[aria-expanded="true"] .site-nav-submenu-caret {
      transform: translateY(0.12em) rotate(225deg);
    }

    .site-nav-icon {
      font-size: 12px;
      opacity: 0.72;
    }

    .site-nav-badge {
      border-radius: 999px;
      border: 1px solid #d8c8b4;
      padding: 1px 6px;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .site-nav-submenu {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      min-width: var(--nav-submenu-width, 220px);
      margin: 0;
      padding: 6px;
      list-style: none;
      border: 1px solid var(--nav-submenu-border, var(--nav-border, #d8c8b4));
      border-radius: var(--nav-submenu-radius, 10px);
      background: var(--nav-submenu-bg, var(--nav-bg, #ffffff));
      color: var(--nav-submenu-text, var(--nav-text, #181412));
      display: none;
      z-index: 4;
    }

    .site-nav-item:hover > .site-nav-submenu,
    .site-nav-item[data-nav-submenu-open="true"] > .site-nav-submenu {
      display: grid;
      gap: 2px;
    }

    .site-nav-submenu .site-nav-link {
      background: var(--nav-submenu-link-bg, transparent);
      color: var(--nav-submenu-link-text, var(--nav-submenu-text, inherit));
    }

    .site-nav-submenu .site-nav-link:hover {
      background: var(--nav-submenu-link-hover-bg, var(--nav-hover-bg, #f6f1eb));
      color: var(--nav-submenu-link-hover-text, var(--nav-hover-text, #171411));
    }

    @media (max-width: 900px) {
      .site-nav-item:hover:not([data-nav-submenu-open="true"]) > .site-nav-submenu {
        display: none;
      }

      .site-nav-item[data-nav-submenu-open="true"] > .site-nav-submenu {
        display: grid;
        width: 100%;
      }

      .site-nav-submenu-toggle {
        width: 42px;
        margin-left: 0;
      }

      .site-nav-item-has-children > .site-nav-link {
        width: calc(100% - 42px);
      }
    }

    .site-nav-drawer {
      flex-wrap: wrap;
    }

    .site-nav-drawer .site-nav-list {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
    }

    .site-nav-drawer[data-nav-drawer-mode="fullscreen"] {
      min-height: 100vh;
      align-items: stretch;
      align-content: flex-start;
      padding: max(28px, var(--nav-padding-y, 10px)) max(24px, var(--nav-padding-x, 14px));
    }

    .site-nav-drawer[data-nav-drawer-mode="fullscreen"] .site-nav-list {
      gap: max(12px, var(--nav-row-gap, 0px));
      padding-top: 32px;
    }

    .site-nav-empty {
      display: inline-flex;
      align-items: center;
      min-height: 54px;
      border: 1px dashed #c9b398;
      border-radius: 14px;
      padding: 12px 16px;
      color: #7d6b59;
      font-size: 13px;
      background: rgba(255, 250, 244, 0.86);
    }

    .site-nav-mega .site-nav-submenu {
      min-width: 280px;
      grid-template-columns: repeat(var(--nav-submenu-columns, 2), minmax(0, 1fr));
      gap: 4px;
    }

    [data-builder-button] {
      border: 0;
      color: inherit;
      text-decoration: none;
    }

    [data-builder-node-link] {
      display: contents;
      color: inherit;
      text-decoration: none !important;
      cursor: pointer;
    }

    [data-builder-node-link]:hover {
      color: inherit;
      text-decoration: none !important;
    }

    .editor-node a {
      color: inherit;
      font: inherit;
      letter-spacing: inherit;
      text-transform: inherit;
      text-decoration: none;
    }

    .editor-node a:hover {
      color: inherit;
      text-decoration: none;
    }

    [data-builder-image] > img,
    img[data-builder-image-target] {
      display: block;
      object-fit: cover;
      width: 100%;
    }

    [data-builder-form] {
      display: grid;
      gap: 12px;
      max-width: 420px;
    }

    [data-builder-form] input,
    [data-builder-form] textarea,
    [data-builder-form] select,
    .builder-form-field input,
    .builder-form-field textarea,
    .builder-form-field select {
      height: var(--builder-form-control-height, 44px);
      border: var(--builder-form-control-border, 1px solid #d8c8b4);
      border-radius: var(--builder-form-control-border-radius, 6px);
      padding: var(--builder-form-control-padding, 0 14px);
      width: 100%;
      box-sizing: border-box;
      appearance: var(--builder-form-control-appearance, auto);
      font-family: var(--builder-form-control-font-family, inherit);
      font-size: var(--builder-form-control-font-size, inherit);
      font-weight: var(--builder-form-control-font-weight, inherit);
      line-height: var(--builder-form-control-line-height, normal);
      letter-spacing: var(--builder-form-control-letter-spacing, normal);
      background: var(--builder-form-control-background, #fff);
      color: var(--builder-form-control-color, #181412);
    }

    [data-builder-form] textarea,
    .builder-form-field textarea {
      min-height: 120px;
      padding: var(--builder-form-control-padding, 12px 14px);
      resize: vertical;
    }

    [data-builder-form] button[type="submit"] {
      appearance: none;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      text-align: left;
    }

    .builder-form-field,
    .builder-form-choice {
      display: grid;
      gap: 8px;
    }

    .builder-form-field > span,
    .builder-form-choice > span {
      color: var(--builder-form-label-color, inherit);
      font-size: var(--builder-form-label-font-size, 13px);
      font-weight: var(--builder-form-label-font-weight, 600);
      letter-spacing: var(--builder-form-label-letter-spacing, inherit);
    }

    .builder-form-field small,
    .builder-form-choice small {
      color: #7d6b59;
      font-size: 12px;
    }

    [data-builder-form-status] {
      display: none;
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 14px;
      line-height: 1.6;
    }

    [data-builder-form-status][data-state="success"] {
      display: block;
      border: 1px solid #b7d4bf;
      background: #ecf7ef;
      color: #245638;
    }

    [data-builder-form-status][data-state="error"] {
      display: block;
      border: 1px solid #efc6c6;
      background: #fff3f3;
      color: #8b2c2c;
    }

.pe-rich-table {
  --pe-table-border: #d6d2ce;
  --pe-table-header-bg: #f3efea;
  --pe-table-header-text: #1a1512;
  --pe-table-cell-bg: #ffffff;
  --pe-table-cell-text: #1f1b18;
  --pe-table-cell-padding-x: 0.7rem;
  --pe-table-cell-padding-y: 0.65rem;
  --pe-table-cell-min-width: 72px;
  --pe-table-cell-font-size: 1rem;
  --pe-table-cell-align: left;
  --pe-table-cell-valign: top;
  --pe-table-border-width: 1px;
  --pe-table-zebra-bg: rgba(20, 20, 20, 0.025);
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 1rem 0;
}

.pe-rich-table th,
.pe-rich-table td {
  min-width: var(--pe-table-cell-min-width, 72px);
  border: var(--pe-table-border-width, 1px) solid var(--pe-table-border, rgba(120, 120, 120, 0.22));
  padding: var(--pe-table-cell-padding-y, 0.65rem) var(--pe-table-cell-padding-x, 0.7rem);
  vertical-align: var(--pe-table-cell-valign, top);
  background: var(--pe-table-cell-bg, #ffffff);
  color: var(--pe-table-cell-text, inherit);
  font-size: var(--pe-table-cell-font-size, 1rem);
  text-align: var(--pe-table-cell-align, left);
}

.pe-rich-table th {
  background: var(--pe-table-header-bg, rgba(20, 20, 20, 0.06));
  color: var(--pe-table-header-text, inherit);
  font-weight: 700;
}

.pe-rich-table.pe-rich-table--rounded {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.pe-rich-table.pe-rich-table--compact th,
.pe-rich-table.pe-rich-table--compact td {
  padding: 0.45rem 0.55rem;
  font-size: 0.92em;
}

.pe-rich-table.pe-rich-table--zebra tbody tr:nth-child(even) td {
  background: var(--pe-table-zebra-bg, rgba(20, 20, 20, 0.025));
}

.pe-rich-table.pe-rich-table--responsive {
  display: block;
  overflow-x: auto;
  max-width: 100%;
  white-space: nowrap;
}

.pe-rich-table img {
  display: block;
  width: min(100%, var(--pe-media-width, 100%));
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 1rem;
}

.pe-rich-media--left,
.pe-rich-video--left {
  margin-right: auto;
}

.pe-rich-media--center,
.pe-rich-video--center {
  margin-left: auto;
  margin-right: auto;
}

.pe-rich-media--right,
.pe-rich-video--right {
  margin-left: auto;
}

.pe-rich-media--full,
.pe-rich-video--full {
  --pe-media-width: 100%;
}

.pe-rich-attachment,
.pe-rich-audio,
.pe-rich-video {
  margin: 1rem 0;
}

.pe-rich-attachment__link {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(120, 120, 120, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  color: inherit;
}

.pe-rich-attachment__label {
  font-weight: 700;
}

.pe-rich-attachment__meta,
.pe-rich-audio__title {
  font-size: 0.8rem;
  color: rgba(92, 82, 76, 0.92);
}

.pe-rich-audio {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(120, 120, 120, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.pe-rich-audio__player {
  width: 100%;
}

.pe-rich-video {
  position: relative;
  width: min(100%, var(--pe-media-width, 100%));
  border-radius: 1rem;
  overflow: hidden;
  background: #0f0f12;
}

.pe-rich-video__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

#node-section_product_header_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_092345f3{width:100%;padding-top:10px;padding-right:6vw;padding-bottom:10px;padding-left:6vw;display:grid;gap:0;color:#ffffff;border-bottom:1px solid rgba(255, 255, 255, 0.10);grid-template-columns:1fr;align-items:center;height:auto;align-content:center;min-height:0;background:#000000;border-color:#dccfbe;position:sticky;top:0;z-index:100;backdrop-filter:blur(18px);max-width:100%;}
#node-block_6f73c4ef{width:100%;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:1280px;min-width:0;justify-self:center;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;margin:0 auto;align-items:center;}
#node-block_45fabccf{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_42a6e4e0{width:132px;object-fit:contain;position:relative;float:left;height:auto;max-width:100%;}
#node-block_9ab17177{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;color:#0a0a0a;}
#node-section_product_hero_20260920{position:relative;width:100%;min-width:0;padding-top:7rem;padding-right:5vw;padding-bottom:7rem;padding-left:5vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;min-height:760px;align-content:center;max-width:100%;}
#node-block_product_hero_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:center;}
#node-block_product_hero_copy_20260920{grid-column:span 7 / span 7;display:grid;gap:1.2rem;padding-right:2rem;min-width:0;max-width:100%;}
#node-text_product_hero_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_title_20260920{margin:0;max-width:11ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(3.2rem, 6vw, 6.6rem);font-weight:400;letter-spacing:-0.055em;line-height:0.92;overflow-wrap:break-word;}
#node-text_product_hero_intro_20260920{margin:0;max-width:59ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_hero_actions_20260920{display:flex;flex-wrap:wrap;gap:0.8rem;padding-top:0.4rem;max-width:100%;}
#node-button_product_hero_core_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;max-width:100%;}
#node-button_product_hero_workflow_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;max-width:100%;}
#node-block_product_hero_visual_20260920{grid-column:span 5 / span 5;min-width:0;min-height:520px;padding-top:1rem;padding-right:1rem;padding-bottom:1rem;padding-left:1rem;background:#0b0b0b;border-radius:32px;display:grid;grid-template-rows:auto 1fr auto;gap:0.8rem;box-shadow:0 30px 78px rgba(0,0,0,0.18);max-width:100%;}
#node-block_product_hero_model_bar_20260920{display:grid;grid-template-columns:1fr auto;gap:0.75rem;align-items:center;padding-top:0.3rem;padding-right:0.25rem;padding-bottom:0.3rem;padding-left:0.25rem;max-width:100%;}
#node-text_product_hero_model_brand_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_model_viewports_20260920{margin:0;color:#bdb5b1;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:800;letter-spacing:0.08em;line-height:1.2;text-align:right;max-width:100%;}
#node-block_product_hero_model_body_20260920{min-width:0;display:grid;grid-template-columns:0.58fr minmax(0, 2.18fr) minmax(104px, 0.97fr);gap:0.6rem;background:#1d1d1d;border-radius:22px;padding-top:0.7rem;padding-right:0.7rem;padding-bottom:0.7rem;padding-left:0.7rem;max-width:100%;}
#node-block_product_hero_model_rail_20260920{display:grid;align-content:start;gap:0.45rem;min-width:0;max-width:100%;}
#node-text_product_hero_rail_1_20260920{margin:0;padding-top:0.65rem;padding-right:0.35rem;padding-bottom:0.65rem;padding-left:0.35rem;background:#ff3030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.7rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_2_20260920{margin:0;padding-top:0.65rem;padding-right:0.35rem;padding-bottom:0.65rem;padding-left:0.35rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.7rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_3_20260920{margin:0;padding-top:0.65rem;padding-right:0.35rem;padding-bottom:0.65rem;padding-left:0.35rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.7rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_4_20260920{margin:0;padding-top:0.65rem;padding-right:0.35rem;padding-bottom:0.65rem;padding-left:0.35rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.7rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-block_product_hero_model_canvas_20260920{min-width:0;padding-top:0.55rem;padding-right:0.55rem;padding-bottom:0.55rem;padding-left:0.55rem;background:#fff4ef;border-radius:14px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.5rem;max-width:100%;}
#node-block_product_hero_canvas_nav_20260920{display:grid;grid-template-columns:1fr auto;gap:0.5rem;align-items:center;padding-top:0.3rem;padding-bottom:0.3rem;max-width:100%;}
#node-text_product_hero_canvas_logo_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.65rem;font-weight:900;max-width:100%;}
#node-text_product_hero_canvas_navlinks_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.5rem;font-weight:700;max-width:100%;}
#node-block_product_hero_canvas_hero_20260920{min-width:0;padding-top:1rem;padding-right:0.85rem;padding-bottom:1rem;padding-left:0.85rem;background:#ff3030;border-radius:12px;display:grid;align-content:center;gap:0.45rem;max-width:100%;}
#node-text_product_hero_canvas_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_canvas_title_20260920{margin:0;max-width:10ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.55rem;font-weight:400;letter-spacing:-0.04em;line-height:0.98;}
#node-text_product_hero_canvas_button_20260920{margin:0;width:fit-content;padding-top:0.38rem;padding-right:0.65rem;padding-bottom:0.38rem;padding-left:0.65rem;background:#ffffff;color:#0b0b0b;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.58rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_grid_20260920{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:0.45rem;max-width:100%;}
#node-block_product_hero_canvas_card_1_20260920{min-height:58px;padding:0.55rem;background:#ff8a1f;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_1_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_card_2_20260920{min-height:58px;padding:0.55rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_2_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;max-width:100%;}
#node-block_product_hero_model_inspector_20260920{min-width:0;padding-top:0.7rem;padding-right:0.55rem;padding-bottom:0.7rem;padding-left:0.55rem;background:#ffffff;border-radius:14px;display:grid;align-content:start;gap:0.4rem;max-width:100%;}
#node-text_product_hero_inspector_label_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.68rem;font-weight:900;letter-spacing:0.13em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_inspector_1_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_2_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_3_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_4_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_5_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_model_note_20260920{margin:0;padding-right:0.25rem;color:#a9a19d;font-family:Inter, Arial, sans-serif;font-size:0.68rem;font-weight:650;line-height:1.35;text-align:right;max-width:100%;}
#node-section_product_entry_paths_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:5vw;padding-bottom:6.5rem;padding-left:5vw;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_paths_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;}
#node-block_product_paths_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.95rem;padding-bottom:1.2rem;min-width:0;max-width:100%;}
#node-block_product_paths_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_paths_title_20260920{margin:0;max-width:20ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_paths_intro_20260920{margin:0;max-width:64ch;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_paths_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1rem;align-items:stretch;max-width:100%;}
#node-block_product_path_card_1_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.65rem;padding-right:1.5rem;padding-bottom:1.45rem;padding-left:1.5rem;background:#ff3030;color:#ffffff;border:1px solid #ff3030;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.8rem;max-width:100%;}
#node-text_product_path_1_number_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;line-height:1;max-width:100%;}
#node-text_product_path_1_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_1_title_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_1_body_20260920{margin:0;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.98rem;line-height:1.55;max-width:100%;}
#node-text_product_path_1_result_20260920{margin:0;padding-top:1rem;border-top:1px solid rgba(255,255,255,0.3);color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.84rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_2_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.65rem;padding-right:1.5rem;padding-bottom:1.45rem;padding-left:1.5rem;background:#ff8a1f;color:#0b0b0b;border:1px solid #ff8a1f;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.8rem;max-width:100%;}
#node-text_product_path_2_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;line-height:1;max-width:100%;}
#node-text_product_path_2_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_2_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_2_body_20260920{margin:0;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.98rem;line-height:1.55;max-width:100%;}
#node-text_product_path_2_result_20260920{margin:0;padding-top:1rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.84rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_3_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.65rem;padding-right:1.5rem;padding-bottom:1.45rem;padding-left:1.5rem;background:#ffffff;color:#0b0b0b;border:1px solid #dfd0c8;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.8rem;max-width:100%;}
#node-text_product_path_3_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;line-height:1;max-width:100%;}
#node-text_product_path_3_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_3_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_3_body_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.98rem;line-height:1.55;max-width:100%;}
#node-text_product_path_3_result_20260920{margin:0;padding-top:1rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.84rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-section_product_editable_core_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:5vw;padding-bottom:6.5rem;padding-left:5vw;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_core_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:start;}
#node-block_product_core_heading_20260920{grid-column:span 5 / span 5;display:grid;gap:0.95rem;padding-bottom:1.2rem;min-width:0;max-width:100%;}
#node-block_product_core_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_core_intro_20260920{margin:0;max-width:64ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_core_list_20260920{grid-column:7 / span 6;display:grid;gap:0;border-top:1px solid #0b0b0b;min-width:0;max-width:100%;}
#node-block_product_core_row_1_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:1rem;align-items:start;padding-top:1.25rem;padding-bottom:1.25rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_1_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_1_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_1_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.94rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_2_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:1rem;align-items:start;padding-top:1.25rem;padding-bottom:1.25rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_2_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_2_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.94rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_3_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:1rem;align-items:start;padding-top:1.25rem;padding-bottom:1.25rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_3_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_3_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.94rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_4_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:1rem;align-items:start;padding-top:1.25rem;padding-bottom:1.25rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_4_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_4_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.94rem;line-height:1.55;max-width:100%;}
#node-section_product_responsive_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:5vw;padding-bottom:6.5rem;padding-left:5vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_responsive_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:center;}
#node-block_product_responsive_copy_20260920{grid-column:span 6 / span 6;display:grid;gap:1rem;padding-right:2rem;min-width:0;max-width:100%;}
#node-text_product_responsive_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_responsive_title_20260920{margin:0;max-width:16ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-text_product_responsive_intro_20260920{margin:0;max-width:55ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_responsive_points_20260920{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.7rem;padding-top:0.5rem;max-width:100%;}
#node-text_product_responsive_point_1_20260920{margin:0;padding-top:0.8rem;padding-right:0.85rem;padding-bottom:0.8rem;padding-left:0.85rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.88rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_2_20260920{margin:0;padding-top:0.8rem;padding-right:0.85rem;padding-bottom:0.8rem;padding-left:0.85rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.88rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_3_20260920{margin:0;padding-top:0.8rem;padding-right:0.85rem;padding-bottom:0.8rem;padding-left:0.85rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.88rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_4_20260920{margin:0;padding-top:0.8rem;padding-right:0.85rem;padding-bottom:0.8rem;padding-left:0.85rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.88rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-block_product_responsive_visual_20260920{grid-column:span 6 / span 6;min-height:500px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#ff8a1f;border-radius:32px;display:grid;grid-template-rows:auto 1fr auto;gap:1.2rem;max-width:100%;}
#node-text_product_responsive_visual_label_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_devices_20260920{display:grid;grid-template-columns:2.3fr 0.8fr;gap:1rem;align-items:end;min-width:0;max-width:100%;}
#node-block_product_responsive_desktop_20260920{min-height:320px;padding-top:0.7rem;padding-right:0.7rem;padding-bottom:0.7rem;padding-left:0.7rem;background:#ffffff;border:8px solid #0b0b0b;border-radius:20px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.55rem;box-shadow:0 22px 45px rgba(11,11,11,0.18);max-width:100%;}
#node-text_product_responsive_desktop_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_desktop_hero_20260920{background:#ff3030;border-radius:12px;max-width:100%;}
#node-block_product_responsive_desktop_grid_20260920{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.5rem;max-width:100%;}
#node-block_product_responsive_desktop_grid_1_20260920{background:#f3c2b7;border-radius:10px;max-width:100%;}
#node-block_product_responsive_desktop_grid_2_20260920{background:#0b0b0b;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_20260920{min-height:260px;padding-top:0.55rem;padding-right:0.45rem;padding-bottom:0.55rem;padding-left:0.45rem;background:#ffffff;border:7px solid #0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto 1.2fr 0.8fr;gap:0.45rem;box-shadow:0 18px 38px rgba(11,11,11,0.18);max-width:100%;}
#node-text_product_responsive_mobile_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_mobile_hero_20260920{background:#ff3030;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_card_20260920{background:#0b0b0b;border-radius:9px;max-width:100%;}
#node-block_product_responsive_breakpoints_20260920{display:flex;flex-wrap:wrap;gap:0.45rem;max-width:100%;}
#node-text_product_breakpoint_1_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_2_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_3_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_4_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_5_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#ff3030;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-section_product_systems_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:5vw;padding-bottom:6.5rem;padding-left:5vw;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_systems_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;}
#node-block_product_systems_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.95rem;padding-bottom:1.2rem;min-width:0;max-width:100%;}
#node-block_product_systems_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_systems_title_20260920{margin:0;max-width:20ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_systems_intro_20260920{margin:0;max-width:64ch;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_systems_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;max-width:100%;}
#node-block_product_system_card_1_20260920{min-height:260px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#ff3030;color:#ffffff;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.8rem;max-width:100%;}
#node-text_product_system_number_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.35rem;line-height:1;max-width:100%;}
#node-text_product_system_title_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_1_20260920{margin:0;align-self:end;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.96rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_2_20260920{min-height:260px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#ff8a1f;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.8rem;max-width:100%;}
#node-text_product_system_number_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.35rem;line-height:1;max-width:100%;}
#node-text_product_system_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_2_20260920{margin:0;align-self:end;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.96rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_3_20260920{min-height:260px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#ffffff;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.8rem;max-width:100%;}
#node-text_product_system_number_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.35rem;line-height:1;max-width:100%;}
#node-text_product_system_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_3_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.96rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_4_20260920{min-height:260px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#f3c2b7;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.8rem;max-width:100%;}
#node-text_product_system_number_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.35rem;line-height:1;max-width:100%;}
#node-text_product_system_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_4_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.96rem;line-height:1.55;max-width:100%;}
#node-section_product_examples_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:5vw;padding-bottom:6.5rem;padding-left:5vw;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_examples_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;}
#node-block_product_examples_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.95rem;padding-bottom:1.2rem;min-width:0;max-width:100%;}
#node-block_product_examples_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_examples_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_examples_intro_20260920{margin:0;max-width:64ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_examples_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;max-width:100%;}
#node-block_product_example_card_1_20260920{min-width:0;padding-top:0.8rem;padding-right:0.8rem;padding-bottom:1.2rem;padding-left:0.8rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.75rem;max-width:100%;}
#node-image_product_example_1_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_1_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.65rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_1_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.92rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_2_20260920{min-width:0;padding-top:0.8rem;padding-right:0.8rem;padding-bottom:1.2rem;padding-left:0.8rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.75rem;max-width:100%;}
#node-image_product_example_2_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_2_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.65rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_2_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.92rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_3_20260920{min-width:0;padding-top:0.8rem;padding-right:0.8rem;padding-bottom:1.2rem;padding-left:0.8rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.75rem;max-width:100%;}
#node-image_product_example_3_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_3_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.65rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_3_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.92rem;line-height:1.5;max-width:100%;}
#node-text_product_examples_note_20260920{grid-column:2 / span 10;margin:0;padding-top:1rem;padding-right:1.2rem;padding-bottom:1rem;padding-left:1.2rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:18px;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:650;line-height:1.5;text-align:center;max-width:100%;}
#node-section_product_launch_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:5vw;padding-bottom:6.5rem;padding-left:5vw;background:#ff3030;color:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_launch_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:end;}
#node-text_product_launch_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:span 12 / span 12;max-width:100%;}
#node-text_product_launch_title_20260920{margin:0;max-width:18ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:span 8 / span 8;}
#node-text_product_launch_body_20260920{margin:0;max-width:52ch;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;grid-column:span 8 / span 8;}
#node-block_product_launch_actions_20260920{grid-column:9 / span 4;grid-row:2 / span 2;display:grid;gap:0.7rem;justify-items:end;align-self:end;max-width:100%;}
#node-button_product_launch_hosting_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ffffff;color:#0b0b0b;border:1px solid #ffffff;max-width:100%;}
#node-button_product_launch_pricing_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.6);max-width:100%;}
#node-section_product_final_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:5vw;padding-bottom:6.5rem;padding-left:5vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_final_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;text-align:center;justify-items:center;}
#node-text_product_final_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:span 12 / span 12;max-width:100%;}
#node-text_product_final_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:2 / span 10;}
#node-text_product_final_body_20260920{margin:0;max-width:60ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;grid-column:3 / span 8;}
#node-block_product_final_actions_20260920{grid-column:span 12 / span 12;display:flex;flex-wrap:wrap;justify-content:center;gap:0.8rem;padding-top:0.5rem;max-width:100%;}
#node-button_product_final_pricing_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;max-width:100%;}
#node-button_product_final_workflow_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;max-width:100%;}
#node-section_product_footer_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_alora_footer_20260921{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:5vw;padding-bottom:2rem;padding-left:5vw;background:#000000;color:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_alora_footer_inner_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:start;padding-bottom:2.5rem;}
#node-block_alora_footer_brand_20260921{grid-column:span 5 / span 5;display:grid;gap:1rem;padding-right:2rem;max-width:100%;}
#node-text_alora_footer_brand_20260921{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3.6vw, 3.6rem);font-weight:400;letter-spacing:-0.04em;line-height:1;max-width:100%;}
#node-text_alora_footer_tagline_20260921{margin:0;max-width:48ch;color:#d7d0cc;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.68;}
#node-button_alora_footer_contact_20260921{width:fit-content;min-width:0;padding-top:14px;padding-right:22px;padding-bottom:14px;padding-left:22px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;cursor:pointer;text-decoration:none;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.58);max-width:100%;}
#node-block_alora_footer_product_20260921{grid-column:span 2 / span 2;display:grid;gap:0.72rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_1_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.78rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_1_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_help_20260921{grid-column:span 3 / span 3;display:grid;gap:0.72rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_2_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.78rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_2_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_5_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_legal_20260921{grid-column:span 2 / span 2;display:grid;gap:0.72rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_3_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.78rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_3_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_bottom_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:center;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.16);}
#node-text_alora_footer_copyright_20260921{grid-column:span 6 / span 6;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.82rem;line-height:1.4;max-width:100%;}
#node-text_alora_footer_support_20260921{grid-column:span 6 / span 6;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.82rem;line-height:1.4;text-align:right;max-width:100%;}

@media (min-width: 1281px) {
#node-section_product_header_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_092345f3{width:100%;padding-top:10px;padding-right:6vw;padding-bottom:10px;padding-left:6vw;display:grid;gap:0;color:#ffffff;border-bottom:1px solid rgba(255, 255, 255, 0.10);grid-template-columns:1fr;align-items:center;height:auto;align-content:center;min-height:0;background:#000000;border-color:#dccfbe;position:sticky;top:0;z-index:100;backdrop-filter:blur(18px);max-width:100%;}
#node-block_6f73c4ef{width:100%;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:1280px;min-width:0;justify-self:center;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;margin:0 auto;align-items:center;}
#node-block_45fabccf{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_42a6e4e0{width:132px;object-fit:contain;position:relative;float:left;height:auto;max-width:100%;}
#node-block_9ab17177{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;color:#0a0a0a;}
#node-section_product_hero_20260920{position:relative;width:100%;min-width:0;padding-top:7rem;padding-right:6vw;padding-bottom:7rem;padding-left:6vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;min-height:760px;align-content:center;max-width:100%;}
#node-block_product_hero_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:center;}
#node-block_product_hero_copy_20260920{grid-column:span 7 / span 7;display:grid;gap:1.2rem;padding-right:2rem;min-width:0;max-width:100%;}
#node-text_product_hero_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_title_20260920{margin:0;max-width:11ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(3.2rem, 6vw, 6.6rem);font-weight:400;letter-spacing:-0.055em;line-height:0.92;overflow-wrap:break-word;}
#node-text_product_hero_intro_20260920{margin:0;max-width:59ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_hero_actions_20260920{display:flex;flex-wrap:wrap;gap:0.8rem;padding-top:0.4rem;max-width:100%;}
#node-button_product_hero_core_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;max-width:100%;}
#node-button_product_hero_workflow_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;max-width:100%;}
#node-block_product_hero_visual_20260920{grid-column:span 5 / span 5;min-width:0;min-height:520px;padding-top:1rem;padding-right:1rem;padding-bottom:1rem;padding-left:1rem;background:#0b0b0b;border-radius:32px;display:grid;grid-template-rows:auto 1fr auto;gap:0.8rem;box-shadow:0 30px 78px rgba(0,0,0,0.18);max-width:100%;}
#node-block_product_hero_model_bar_20260920{display:grid;grid-template-columns:1fr auto;gap:0.75rem;align-items:center;padding-top:0.3rem;padding-right:0.25rem;padding-bottom:0.3rem;padding-left:0.25rem;max-width:100%;}
#node-text_product_hero_model_brand_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_model_viewports_20260920{margin:0;color:#bdb5b1;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:800;letter-spacing:0.08em;line-height:1.2;text-align:right;max-width:100%;}
#node-block_product_hero_model_body_20260920{min-width:0;display:grid;grid-template-columns:0.58fr minmax(0, 2.18fr) minmax(104px, 0.97fr);gap:0.6rem;background:#1d1d1d;border-radius:22px;padding-top:0.7rem;padding-right:0.7rem;padding-bottom:0.7rem;padding-left:0.7rem;max-width:100%;}
#node-block_product_hero_model_rail_20260920{display:grid;align-content:start;gap:0.45rem;min-width:0;max-width:100%;}
#node-text_product_hero_rail_1_20260920{margin:0;padding-top:0.65rem;padding-right:0.35rem;padding-bottom:0.65rem;padding-left:0.35rem;background:#ff3030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.7rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_2_20260920{margin:0;padding-top:0.65rem;padding-right:0.35rem;padding-bottom:0.65rem;padding-left:0.35rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.7rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_3_20260920{margin:0;padding-top:0.65rem;padding-right:0.35rem;padding-bottom:0.65rem;padding-left:0.35rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.7rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_4_20260920{margin:0;padding-top:0.65rem;padding-right:0.35rem;padding-bottom:0.65rem;padding-left:0.35rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.7rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-block_product_hero_model_canvas_20260920{min-width:0;padding-top:0.55rem;padding-right:0.55rem;padding-bottom:0.55rem;padding-left:0.55rem;background:#fff4ef;border-radius:14px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.5rem;max-width:100%;}
#node-block_product_hero_canvas_nav_20260920{display:grid;grid-template-columns:1fr auto;gap:0.5rem;align-items:center;padding-top:0.3rem;padding-bottom:0.3rem;max-width:100%;}
#node-text_product_hero_canvas_logo_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.65rem;font-weight:900;max-width:100%;}
#node-text_product_hero_canvas_navlinks_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.5rem;font-weight:700;max-width:100%;}
#node-block_product_hero_canvas_hero_20260920{min-width:0;padding-top:1rem;padding-right:0.85rem;padding-bottom:1rem;padding-left:0.85rem;background:#ff3030;border-radius:12px;display:grid;align-content:center;gap:0.45rem;max-width:100%;}
#node-text_product_hero_canvas_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_canvas_title_20260920{margin:0;max-width:10ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.55rem;font-weight:400;letter-spacing:-0.04em;line-height:0.98;}
#node-text_product_hero_canvas_button_20260920{margin:0;width:fit-content;padding-top:0.38rem;padding-right:0.65rem;padding-bottom:0.38rem;padding-left:0.65rem;background:#ffffff;color:#0b0b0b;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.58rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_grid_20260920{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:0.45rem;max-width:100%;}
#node-block_product_hero_canvas_card_1_20260920{min-height:58px;padding:0.55rem;background:#ff8a1f;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_1_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_card_2_20260920{min-height:58px;padding:0.55rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_2_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;max-width:100%;}
#node-block_product_hero_model_inspector_20260920{min-width:0;padding-top:0.7rem;padding-right:0.55rem;padding-bottom:0.7rem;padding-left:0.55rem;background:#ffffff;border-radius:14px;display:grid;align-content:start;gap:0.4rem;max-width:100%;}
#node-text_product_hero_inspector_label_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.68rem;font-weight:900;letter-spacing:0.13em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_inspector_1_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_2_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_3_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_4_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_5_20260920{margin:0;padding-top:0.5rem;padding-bottom:0.5rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:750;max-width:100%;}
#node-text_product_hero_model_note_20260920{margin:0;padding-right:0.25rem;color:#a9a19d;font-family:Inter, Arial, sans-serif;font-size:0.68rem;font-weight:650;line-height:1.35;text-align:right;max-width:100%;}
#node-section_product_entry_paths_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:6vw;padding-bottom:6.5rem;padding-left:6vw;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_paths_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;}
#node-block_product_paths_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.95rem;padding-bottom:1.2rem;min-width:0;max-width:100%;}
#node-block_product_paths_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_paths_title_20260920{margin:0;max-width:20ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_paths_intro_20260920{margin:0;max-width:64ch;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_paths_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1rem;align-items:stretch;max-width:100%;}
#node-block_product_path_card_1_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.65rem;padding-right:1.5rem;padding-bottom:1.45rem;padding-left:1.5rem;background:#ff3030;color:#ffffff;border:1px solid #ff3030;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.8rem;max-width:100%;}
#node-text_product_path_1_number_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;line-height:1;max-width:100%;}
#node-text_product_path_1_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_1_title_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_1_body_20260920{margin:0;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.98rem;line-height:1.55;max-width:100%;}
#node-text_product_path_1_result_20260920{margin:0;padding-top:1rem;border-top:1px solid rgba(255,255,255,0.3);color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.84rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_2_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.65rem;padding-right:1.5rem;padding-bottom:1.45rem;padding-left:1.5rem;background:#ff8a1f;color:#0b0b0b;border:1px solid #ff8a1f;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.8rem;max-width:100%;}
#node-text_product_path_2_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;line-height:1;max-width:100%;}
#node-text_product_path_2_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_2_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_2_body_20260920{margin:0;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.98rem;line-height:1.55;max-width:100%;}
#node-text_product_path_2_result_20260920{margin:0;padding-top:1rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.84rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_3_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.65rem;padding-right:1.5rem;padding-bottom:1.45rem;padding-left:1.5rem;background:#ffffff;color:#0b0b0b;border:1px solid #dfd0c8;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.8rem;max-width:100%;}
#node-text_product_path_3_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;line-height:1;max-width:100%;}
#node-text_product_path_3_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_3_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_3_body_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.98rem;line-height:1.55;max-width:100%;}
#node-text_product_path_3_result_20260920{margin:0;padding-top:1rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.84rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-section_product_editable_core_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:6vw;padding-bottom:6.5rem;padding-left:6vw;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_core_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:start;}
#node-block_product_core_heading_20260920{grid-column:span 5 / span 5;display:grid;gap:0.95rem;padding-bottom:1.2rem;min-width:0;max-width:100%;}
#node-block_product_core_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_core_intro_20260920{margin:0;max-width:64ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_core_list_20260920{grid-column:7 / span 6;display:grid;gap:0;border-top:1px solid #0b0b0b;min-width:0;max-width:100%;}
#node-block_product_core_row_1_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:1rem;align-items:start;padding-top:1.25rem;padding-bottom:1.25rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_1_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_1_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_1_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.94rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_2_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:1rem;align-items:start;padding-top:1.25rem;padding-bottom:1.25rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_2_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_2_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.94rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_3_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:1rem;align-items:start;padding-top:1.25rem;padding-bottom:1.25rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_3_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_3_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.94rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_4_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:1rem;align-items:start;padding-top:1.25rem;padding-bottom:1.25rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_4_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.45rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_4_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.94rem;line-height:1.55;max-width:100%;}
#node-section_product_responsive_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:6vw;padding-bottom:6.5rem;padding-left:6vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_responsive_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:center;}
#node-block_product_responsive_copy_20260920{grid-column:span 6 / span 6;display:grid;gap:1rem;padding-right:2rem;min-width:0;max-width:100%;}
#node-text_product_responsive_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_responsive_title_20260920{margin:0;max-width:16ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-text_product_responsive_intro_20260920{margin:0;max-width:55ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_responsive_points_20260920{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.7rem;padding-top:0.5rem;max-width:100%;}
#node-text_product_responsive_point_1_20260920{margin:0;padding-top:0.8rem;padding-right:0.85rem;padding-bottom:0.8rem;padding-left:0.85rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.88rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_2_20260920{margin:0;padding-top:0.8rem;padding-right:0.85rem;padding-bottom:0.8rem;padding-left:0.85rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.88rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_3_20260920{margin:0;padding-top:0.8rem;padding-right:0.85rem;padding-bottom:0.8rem;padding-left:0.85rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.88rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_4_20260920{margin:0;padding-top:0.8rem;padding-right:0.85rem;padding-bottom:0.8rem;padding-left:0.85rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.88rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-block_product_responsive_visual_20260920{grid-column:span 6 / span 6;min-height:500px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#ff8a1f;border-radius:32px;display:grid;grid-template-rows:auto 1fr auto;gap:1.2rem;max-width:100%;}
#node-text_product_responsive_visual_label_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_devices_20260920{display:grid;grid-template-columns:2.3fr 0.8fr;gap:1rem;align-items:end;min-width:0;max-width:100%;}
#node-block_product_responsive_desktop_20260920{min-height:320px;padding-top:0.7rem;padding-right:0.7rem;padding-bottom:0.7rem;padding-left:0.7rem;background:#ffffff;border:8px solid #0b0b0b;border-radius:20px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.55rem;box-shadow:0 22px 45px rgba(11,11,11,0.18);max-width:100%;}
#node-text_product_responsive_desktop_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_desktop_hero_20260920{background:#ff3030;border-radius:12px;max-width:100%;}
#node-block_product_responsive_desktop_grid_20260920{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.5rem;max-width:100%;}
#node-block_product_responsive_desktop_grid_1_20260920{background:#f3c2b7;border-radius:10px;max-width:100%;}
#node-block_product_responsive_desktop_grid_2_20260920{background:#0b0b0b;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_20260920{min-height:260px;padding-top:0.55rem;padding-right:0.45rem;padding-bottom:0.55rem;padding-left:0.45rem;background:#ffffff;border:7px solid #0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto 1.2fr 0.8fr;gap:0.45rem;box-shadow:0 18px 38px rgba(11,11,11,0.18);max-width:100%;}
#node-text_product_responsive_mobile_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_mobile_hero_20260920{background:#ff3030;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_card_20260920{background:#0b0b0b;border-radius:9px;max-width:100%;}
#node-block_product_responsive_breakpoints_20260920{display:flex;flex-wrap:wrap;gap:0.45rem;max-width:100%;}
#node-text_product_breakpoint_1_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_2_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_3_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_4_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_5_20260920{margin:0;padding-top:0.45rem;padding-right:0.65rem;padding-bottom:0.45rem;padding-left:0.65rem;background:#ff3030;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.62rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-section_product_systems_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:6vw;padding-bottom:6.5rem;padding-left:6vw;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_systems_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;}
#node-block_product_systems_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.95rem;padding-bottom:1.2rem;min-width:0;max-width:100%;}
#node-block_product_systems_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_systems_title_20260920{margin:0;max-width:20ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_systems_intro_20260920{margin:0;max-width:64ch;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_systems_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;max-width:100%;}
#node-block_product_system_card_1_20260920{min-height:260px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#ff3030;color:#ffffff;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.8rem;max-width:100%;}
#node-text_product_system_number_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.35rem;line-height:1;max-width:100%;}
#node-text_product_system_title_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_1_20260920{margin:0;align-self:end;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.96rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_2_20260920{min-height:260px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#ff8a1f;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.8rem;max-width:100%;}
#node-text_product_system_number_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.35rem;line-height:1;max-width:100%;}
#node-text_product_system_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_2_20260920{margin:0;align-self:end;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.96rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_3_20260920{min-height:260px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#ffffff;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.8rem;max-width:100%;}
#node-text_product_system_number_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.35rem;line-height:1;max-width:100%;}
#node-text_product_system_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_3_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.96rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_4_20260920{min-height:260px;padding-top:1.5rem;padding-right:1.4rem;padding-bottom:1.4rem;padding-left:1.4rem;background:#f3c2b7;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.8rem;max-width:100%;}
#node-text_product_system_number_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.35rem;line-height:1;max-width:100%;}
#node-text_product_system_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_4_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.96rem;line-height:1.55;max-width:100%;}
#node-section_product_examples_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:6vw;padding-bottom:6.5rem;padding-left:6vw;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_examples_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;}
#node-block_product_examples_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.95rem;padding-bottom:1.2rem;min-width:0;max-width:100%;}
#node-block_product_examples_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_examples_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_examples_intro_20260920{margin:0;max-width:64ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;}
#node-block_product_examples_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;max-width:100%;}
#node-block_product_example_card_1_20260920{min-width:0;padding-top:0.8rem;padding-right:0.8rem;padding-bottom:1.2rem;padding-left:0.8rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.75rem;max-width:100%;}
#node-image_product_example_1_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_1_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.65rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_1_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.92rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_2_20260920{min-width:0;padding-top:0.8rem;padding-right:0.8rem;padding-bottom:1.2rem;padding-left:0.8rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.75rem;max-width:100%;}
#node-image_product_example_2_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_2_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.65rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_2_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.92rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_3_20260920{min-width:0;padding-top:0.8rem;padding-right:0.8rem;padding-bottom:1.2rem;padding-left:0.8rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.75rem;max-width:100%;}
#node-image_product_example_3_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_3_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.65rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_3_20260920{margin:0;padding-right:0.4rem;padding-left:0.4rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.92rem;line-height:1.5;max-width:100%;}
#node-text_product_examples_note_20260920{grid-column:2 / span 10;margin:0;padding-top:1rem;padding-right:1.2rem;padding-bottom:1rem;padding-left:1.2rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:18px;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:650;line-height:1.5;text-align:center;max-width:100%;}
#node-section_product_launch_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:6vw;padding-bottom:6.5rem;padding-left:6vw;background:#ff3030;color:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_launch_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:end;}
#node-text_product_launch_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:span 12 / span 12;max-width:100%;}
#node-text_product_launch_title_20260920{margin:0;max-width:18ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:span 8 / span 8;}
#node-text_product_launch_body_20260920{margin:0;max-width:52ch;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;grid-column:span 8 / span 8;}
#node-block_product_launch_actions_20260920{grid-column:9 / span 4;grid-row:2 / span 2;display:grid;gap:0.7rem;justify-items:end;align-self:end;max-width:100%;}
#node-button_product_launch_hosting_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ffffff;color:#0b0b0b;border:1px solid #ffffff;max-width:100%;}
#node-button_product_launch_pricing_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.6);max-width:100%;}
#node-section_product_final_20260920{position:relative;width:100%;min-width:0;padding-top:6.5rem;padding-right:6vw;padding-bottom:6.5rem;padding-left:6vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_final_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;text-align:center;justify-items:center;}
#node-text_product_final_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.76rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:span 12 / span 12;max-width:100%;}
#node-text_product_final_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:2 / span 10;}
#node-text_product_final_body_20260920{margin:0;max-width:60ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1.05rem;font-weight:450;line-height:1.65;grid-column:3 / span 8;}
#node-block_product_final_actions_20260920{grid-column:span 12 / span 12;display:flex;flex-wrap:wrap;justify-content:center;gap:0.8rem;padding-top:0.5rem;max-width:100%;}
#node-button_product_final_pricing_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;max-width:100%;}
#node-button_product_final_workflow_20260920{width:fit-content;min-width:0;padding-top:15px;padding-right:23px;padding-bottom:15px;padding-left:23px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;max-width:100%;}
#node-section_product_footer_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_alora_footer_20260921{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:5vw;padding-bottom:2rem;padding-left:5vw;background:#000000;color:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_alora_footer_inner_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:start;padding-bottom:2.5rem;}
#node-block_alora_footer_brand_20260921{grid-column:span 5 / span 5;display:grid;gap:1rem;padding-right:2rem;max-width:100%;}
#node-text_alora_footer_brand_20260921{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3.6vw, 3.6rem);font-weight:400;letter-spacing:-0.04em;line-height:1;max-width:100%;}
#node-text_alora_footer_tagline_20260921{margin:0;max-width:48ch;color:#d7d0cc;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.68;}
#node-button_alora_footer_contact_20260921{width:fit-content;min-width:0;padding-top:14px;padding-right:22px;padding-bottom:14px;padding-left:22px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:15px;font-weight:800;line-height:1;text-align:center;cursor:pointer;text-decoration:none;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.58);max-width:100%;}
#node-block_alora_footer_product_20260921{grid-column:span 2 / span 2;display:grid;gap:0.72rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_1_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.78rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_1_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_help_20260921{grid-column:span 3 / span 3;display:grid;gap:0.72rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_2_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.78rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_2_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_5_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_legal_20260921{grid-column:span 2 / span 2;display:grid;gap:0.72rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_3_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.78rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_3_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_bottom_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5rem;padding:0;background:transparent;align-items:center;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.16);}
#node-text_alora_footer_copyright_20260921{grid-column:span 6 / span 6;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.82rem;line-height:1.4;max-width:100%;}
#node-text_alora_footer_support_20260921{grid-column:span 6 / span 6;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.82rem;line-height:1.4;text-align:right;max-width:100%;}
}

@media (max-width: 1279px) {
#node-section_product_header_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_092345f3{width:100%;padding-top:10px;padding-right:6vw;padding-bottom:10px;padding-left:6vw;display:grid;gap:0;color:#ffffff;border-bottom:1px solid rgba(255, 255, 255, 0.10);grid-template-columns:1fr;align-items:center;height:auto;align-content:center;min-height:0;background:#000000;border-color:#dccfbe;position:sticky;top:0;z-index:100;backdrop-filter:blur(18px);max-width:100%;}
#node-block_6f73c4ef{width:100%;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:1280px;min-width:0;justify-self:center;height:auto;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;color:#0a0a0a;margin:0 auto;align-items:center;}
#node-block_45fabccf{width:auto;padding-top:1.84px;padding-right:1.84px;padding-bottom:1.84px;padding-left:1.84px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_42a6e4e0{width:132px;object-fit:contain;position:relative;float:left;height:auto;max-width:100%;}
#node-block_9ab17177{width:auto;padding-top:1.84px;padding-right:1.84px;padding-bottom:1.84px;padding-left:1.84px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;color:#0a0a0a;}
#node-section_product_hero_20260920{position:relative;width:100%;min-width:0;padding-top:5.5rem;padding-right:4vw;padding-bottom:5.5rem;padding-left:4vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;min-height:760px;align-content:center;max-width:100%;}
#node-block_product_hero_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;align-items:center;}
#node-block_product_hero_copy_20260920{grid-column:span 7 / span 7;display:grid;gap:1.104rem;padding-right:1.84rem;min-width:0;max-width:100%;}
#node-text_product_hero_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_title_20260920{margin:0;max-width:11ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(3.2rem, 6vw, 6.6rem);font-weight:400;letter-spacing:-0.055em;line-height:0.92;overflow-wrap:break-word;}
#node-text_product_hero_intro_20260920{margin:0;max-width:59ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.966rem;font-weight:450;line-height:1.65;}
#node-block_product_hero_actions_20260920{display:flex;flex-wrap:wrap;gap:0.736rem;padding-top:0.368rem;max-width:100%;}
#node-button_product_hero_core_20260920{width:fit-content;min-width:0;padding-top:13.8px;padding-right:21.16px;padding-bottom:13.8px;padding-left:21.16px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:13.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;max-width:100%;}
#node-button_product_hero_workflow_20260920{width:fit-content;min-width:0;padding-top:13.8px;padding-right:21.16px;padding-bottom:13.8px;padding-left:21.16px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:13.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;max-width:100%;}
#node-block_product_hero_visual_20260920{grid-column:span 5 / span 5;min-width:0;min-height:520px;padding-top:0.92rem;padding-right:0.92rem;padding-bottom:0.92rem;padding-left:0.92rem;background:#0b0b0b;border-radius:32px;display:grid;grid-template-rows:auto 1fr auto;gap:0.736rem;box-shadow:0 30px 78px rgba(0,0,0,0.18);max-width:100%;}
#node-block_product_hero_model_bar_20260920{display:grid;grid-template-columns:1fr auto;gap:0.69rem;align-items:center;padding-top:0.276rem;padding-right:0.23rem;padding-bottom:0.276rem;padding-left:0.23rem;max-width:100%;}
#node-text_product_hero_model_brand_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_model_viewports_20260920{margin:0;color:#bdb5b1;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:800;letter-spacing:0.08em;line-height:1.2;text-align:right;max-width:100%;}
#node-block_product_hero_model_body_20260920{min-width:0;display:grid;grid-template-columns:0.58fr minmax(0, 2.18fr) minmax(104px, 0.97fr);gap:0.552rem;background:#1d1d1d;border-radius:22px;padding-top:0.644rem;padding-right:0.644rem;padding-bottom:0.644rem;padding-left:0.644rem;max-width:100%;}
#node-block_product_hero_model_rail_20260920{display:grid;align-content:start;gap:0.414rem;min-width:0;max-width:100%;}
#node-text_product_hero_rail_1_20260920{margin:0;padding-top:0.598rem;padding-right:0.322rem;padding-bottom:0.598rem;padding-left:0.322rem;background:#ff3030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.644rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_2_20260920{margin:0;padding-top:0.598rem;padding-right:0.322rem;padding-bottom:0.598rem;padding-left:0.322rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.644rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_3_20260920{margin:0;padding-top:0.598rem;padding-right:0.322rem;padding-bottom:0.598rem;padding-left:0.322rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.644rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_4_20260920{margin:0;padding-top:0.598rem;padding-right:0.322rem;padding-bottom:0.598rem;padding-left:0.322rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.644rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-block_product_hero_model_canvas_20260920{min-width:0;padding-top:0.506rem;padding-right:0.506rem;padding-bottom:0.506rem;padding-left:0.506rem;background:#fff4ef;border-radius:14px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.46rem;max-width:100%;}
#node-block_product_hero_canvas_nav_20260920{display:grid;grid-template-columns:1fr auto;gap:0.46rem;align-items:center;padding-top:0.276rem;padding-bottom:0.276rem;max-width:100%;}
#node-text_product_hero_canvas_logo_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.598rem;font-weight:900;max-width:100%;}
#node-text_product_hero_canvas_navlinks_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.46rem;font-weight:700;max-width:100%;}
#node-block_product_hero_canvas_hero_20260920{min-width:0;padding-top:0.92rem;padding-right:0.782rem;padding-bottom:0.92rem;padding-left:0.782rem;background:#ff3030;border-radius:12px;display:grid;align-content:center;gap:0.414rem;max-width:100%;}
#node-text_product_hero_canvas_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_canvas_title_20260920{margin:0;max-width:10ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.426rem;font-weight:400;letter-spacing:-0.04em;line-height:0.98;}
#node-text_product_hero_canvas_button_20260920{margin:0;width:fit-content;padding-top:0.35rem;padding-right:0.598rem;padding-bottom:0.35rem;padding-left:0.598rem;background:#ffffff;color:#0b0b0b;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.534rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_grid_20260920{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:0.414rem;max-width:100%;}
#node-block_product_hero_canvas_card_1_20260920{min-height:58px;padding:0.506rem;background:#ff8a1f;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_1_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_card_2_20260920{min-height:58px;padding:0.506rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_2_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:900;max-width:100%;}
#node-block_product_hero_model_inspector_20260920{min-width:0;padding-top:0.644rem;padding-right:0.506rem;padding-bottom:0.644rem;padding-left:0.506rem;background:#ffffff;border-radius:14px;display:grid;align-content:start;gap:0.368rem;max-width:100%;}
#node-text_product_hero_inspector_label_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.626rem;font-weight:900;letter-spacing:0.13em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_inspector_1_20260920{margin:0;padding-top:0.46rem;padding-bottom:0.46rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_2_20260920{margin:0;padding-top:0.46rem;padding-bottom:0.46rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_3_20260920{margin:0;padding-top:0.46rem;padding-bottom:0.46rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_4_20260920{margin:0;padding-top:0.46rem;padding-bottom:0.46rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_5_20260920{margin:0;padding-top:0.46rem;padding-bottom:0.46rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:750;max-width:100%;}
#node-text_product_hero_model_note_20260920{margin:0;padding-right:0.23rem;color:#a9a19d;font-family:Inter, Arial, sans-serif;font-size:0.626rem;font-weight:650;line-height:1.35;text-align:right;max-width:100%;}
#node-section_product_entry_paths_20260920{position:relative;width:100%;min-width:0;padding-top:5.5rem;padding-right:4vw;padding-bottom:5.5rem;padding-left:4vw;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_paths_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;}
#node-block_product_paths_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.874rem;padding-bottom:1.104rem;min-width:0;max-width:100%;}
#node-block_product_paths_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_paths_title_20260920{margin:0;max-width:20ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_paths_intro_20260920{margin:0;max-width:64ch;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:0.966rem;font-weight:450;line-height:1.65;}
#node-block_product_paths_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;align-items:stretch;max-width:100%;}
#node-block_product_path_card_1_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.518rem;padding-right:1.38rem;padding-bottom:1.334rem;padding-left:1.38rem;background:#ff3030;color:#ffffff;border:1px solid #ff3030;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.736rem;max-width:100%;}
#node-text_product_path_1_number_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.334rem;line-height:1;max-width:100%;}
#node-text_product_path_1_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_1_title_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_1_body_20260920{margin:0;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.902rem;line-height:1.55;max-width:100%;}
#node-text_product_path_1_result_20260920{margin:0;padding-top:0.92rem;border-top:1px solid rgba(255,255,255,0.3);color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.773rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_2_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.518rem;padding-right:1.38rem;padding-bottom:1.334rem;padding-left:1.38rem;background:#ff8a1f;color:#0b0b0b;border:1px solid #ff8a1f;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.736rem;max-width:100%;}
#node-text_product_path_2_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.334rem;line-height:1;max-width:100%;}
#node-text_product_path_2_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_2_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_2_body_20260920{margin:0;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.902rem;line-height:1.55;max-width:100%;}
#node-text_product_path_2_result_20260920{margin:0;padding-top:0.92rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.773rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_3_20260920{min-width:0;min-height:410px;height:100%;padding-top:1.518rem;padding-right:1.38rem;padding-bottom:1.334rem;padding-left:1.38rem;background:#ffffff;color:#0b0b0b;border:1px solid #dfd0c8;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.736rem;max-width:100%;}
#node-text_product_path_3_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.334rem;line-height:1;max-width:100%;}
#node-text_product_path_3_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_3_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_3_body_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.902rem;line-height:1.55;max-width:100%;}
#node-text_product_path_3_result_20260920{margin:0;padding-top:0.92rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.773rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-section_product_editable_core_20260920{position:relative;width:100%;min-width:0;padding-top:5.5rem;padding-right:4vw;padding-bottom:5.5rem;padding-left:4vw;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_core_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;align-items:start;}
#node-block_product_core_heading_20260920{grid-column:span 5 / span 5;display:grid;gap:0.874rem;padding-bottom:1.104rem;min-width:0;max-width:100%;}
#node-block_product_core_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_core_intro_20260920{margin:0;max-width:64ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.966rem;font-weight:450;line-height:1.65;}
#node-block_product_core_list_20260920{grid-column:7 / span 6;display:grid;gap:0;border-top:1px solid #0b0b0b;min-width:0;max-width:100%;}
#node-block_product_core_row_1_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:0.92rem;align-items:start;padding-top:1.15rem;padding-bottom:1.15rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_1_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_1_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.334rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_1_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.865rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_2_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:0.92rem;align-items:start;padding-top:1.15rem;padding-bottom:1.15rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_2_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.334rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_2_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.865rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_3_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:0.92rem;align-items:start;padding-top:1.15rem;padding-bottom:1.15rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_3_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.334rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_3_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.865rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_4_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:0.92rem;align-items:start;padding-top:1.15rem;padding-bottom:1.15rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_4_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.334rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_4_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.865rem;line-height:1.55;max-width:100%;}
#node-section_product_responsive_20260920{position:relative;width:100%;min-width:0;padding-top:5.5rem;padding-right:4vw;padding-bottom:5.5rem;padding-left:4vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_responsive_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;align-items:center;}
#node-block_product_responsive_copy_20260920{grid-column:span 6 / span 6;display:grid;gap:0.92rem;padding-right:1.84rem;min-width:0;max-width:100%;}
#node-text_product_responsive_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_responsive_title_20260920{margin:0;max-width:16ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-text_product_responsive_intro_20260920{margin:0;max-width:55ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.966rem;font-weight:450;line-height:1.65;}
#node-block_product_responsive_points_20260920{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.644rem;padding-top:0.46rem;max-width:100%;}
#node-text_product_responsive_point_1_20260920{margin:0;padding-top:0.736rem;padding-right:0.782rem;padding-bottom:0.736rem;padding-left:0.782rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.81rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_2_20260920{margin:0;padding-top:0.736rem;padding-right:0.782rem;padding-bottom:0.736rem;padding-left:0.782rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.81rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_3_20260920{margin:0;padding-top:0.736rem;padding-right:0.782rem;padding-bottom:0.736rem;padding-left:0.782rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.81rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_4_20260920{margin:0;padding-top:0.736rem;padding-right:0.782rem;padding-bottom:0.736rem;padding-left:0.782rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.81rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-block_product_responsive_visual_20260920{grid-column:span 6 / span 6;min-height:500px;padding-top:1.38rem;padding-right:1.288rem;padding-bottom:1.288rem;padding-left:1.288rem;background:#ff8a1f;border-radius:32px;display:grid;grid-template-rows:auto 1fr auto;gap:1.104rem;max-width:100%;}
#node-text_product_responsive_visual_label_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_devices_20260920{display:grid;grid-template-columns:2.3fr 0.8fr;gap:0.92rem;align-items:end;min-width:0;max-width:100%;}
#node-block_product_responsive_desktop_20260920{min-height:320px;padding-top:0.644rem;padding-right:0.644rem;padding-bottom:0.644rem;padding-left:0.644rem;background:#ffffff;border:8px solid #0b0b0b;border-radius:20px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.506rem;box-shadow:0 22px 45px rgba(11,11,11,0.18);max-width:100%;}
#node-text_product_responsive_desktop_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_desktop_hero_20260920{background:#ff3030;border-radius:12px;max-width:100%;}
#node-block_product_responsive_desktop_grid_20260920{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.46rem;max-width:100%;}
#node-block_product_responsive_desktop_grid_1_20260920{background:#f3c2b7;border-radius:10px;max-width:100%;}
#node-block_product_responsive_desktop_grid_2_20260920{background:#0b0b0b;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_20260920{min-height:260px;padding-top:0.506rem;padding-right:0.414rem;padding-bottom:0.506rem;padding-left:0.414rem;background:#ffffff;border:7px solid #0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto 1.2fr 0.8fr;gap:0.414rem;box-shadow:0 18px 38px rgba(11,11,11,0.18);max-width:100%;}
#node-text_product_responsive_mobile_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_mobile_hero_20260920{background:#ff3030;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_card_20260920{background:#0b0b0b;border-radius:9px;max-width:100%;}
#node-block_product_responsive_breakpoints_20260920{display:flex;flex-wrap:wrap;gap:0.414rem;max-width:100%;}
#node-text_product_breakpoint_1_20260920{margin:0;padding-top:0.414rem;padding-right:0.598rem;padding-bottom:0.414rem;padding-left:0.598rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_2_20260920{margin:0;padding-top:0.414rem;padding-right:0.598rem;padding-bottom:0.414rem;padding-left:0.598rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_3_20260920{margin:0;padding-top:0.414rem;padding-right:0.598rem;padding-bottom:0.414rem;padding-left:0.598rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_4_20260920{margin:0;padding-top:0.414rem;padding-right:0.598rem;padding-bottom:0.414rem;padding-left:0.598rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_5_20260920{margin:0;padding-top:0.414rem;padding-right:0.598rem;padding-bottom:0.414rem;padding-left:0.598rem;background:#ff3030;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.57rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-section_product_systems_20260920{position:relative;width:100%;min-width:0;padding-top:5.5rem;padding-right:4vw;padding-bottom:5.5rem;padding-left:4vw;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_systems_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;}
#node-block_product_systems_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.874rem;padding-bottom:1.104rem;min-width:0;max-width:100%;}
#node-block_product_systems_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_systems_title_20260920{margin:0;max-width:20ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_systems_intro_20260920{margin:0;max-width:64ch;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:0.966rem;font-weight:450;line-height:1.65;}
#node-block_product_systems_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.92rem;max-width:100%;}
#node-block_product_system_card_1_20260920{min-height:260px;padding-top:1.38rem;padding-right:1.288rem;padding-bottom:1.288rem;padding-left:1.288rem;background:#ff3030;color:#ffffff;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.736rem;max-width:100%;}
#node-text_product_system_number_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.242rem;line-height:1;max-width:100%;}
#node-text_product_system_title_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_1_20260920{margin:0;align-self:end;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.883rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_2_20260920{min-height:260px;padding-top:1.38rem;padding-right:1.288rem;padding-bottom:1.288rem;padding-left:1.288rem;background:#ff8a1f;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.736rem;max-width:100%;}
#node-text_product_system_number_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.242rem;line-height:1;max-width:100%;}
#node-text_product_system_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_2_20260920{margin:0;align-self:end;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.883rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_3_20260920{min-height:260px;padding-top:1.38rem;padding-right:1.288rem;padding-bottom:1.288rem;padding-left:1.288rem;background:#ffffff;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.736rem;max-width:100%;}
#node-text_product_system_number_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.242rem;line-height:1;max-width:100%;}
#node-text_product_system_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_3_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.883rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_4_20260920{min-height:260px;padding-top:1.38rem;padding-right:1.288rem;padding-bottom:1.288rem;padding-left:1.288rem;background:#f3c2b7;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.736rem;max-width:100%;}
#node-text_product_system_number_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.242rem;line-height:1;max-width:100%;}
#node-text_product_system_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_4_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.883rem;line-height:1.55;max-width:100%;}
#node-section_product_examples_20260920{position:relative;width:100%;min-width:0;padding-top:5.5rem;padding-right:4vw;padding-bottom:5.5rem;padding-left:4vw;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_examples_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;}
#node-block_product_examples_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.874rem;padding-bottom:1.104rem;min-width:0;max-width:100%;}
#node-block_product_examples_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_examples_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_examples_intro_20260920{margin:0;max-width:64ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.966rem;font-weight:450;line-height:1.65;}
#node-block_product_examples_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0.92rem;max-width:100%;}
#node-block_product_example_card_1_20260920{min-width:0;padding-top:0.736rem;padding-right:0.736rem;padding-bottom:1.104rem;padding-left:0.736rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.69rem;max-width:100%;}
#node-image_product_example_1_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_1_20260920{margin:0;padding-right:0.368rem;padding-left:0.368rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.518rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_1_20260920{margin:0;padding-right:0.368rem;padding-left:0.368rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.846rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_2_20260920{min-width:0;padding-top:0.736rem;padding-right:0.736rem;padding-bottom:1.104rem;padding-left:0.736rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.69rem;max-width:100%;}
#node-image_product_example_2_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_2_20260920{margin:0;padding-right:0.368rem;padding-left:0.368rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.518rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_2_20260920{margin:0;padding-right:0.368rem;padding-left:0.368rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.846rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_3_20260920{min-width:0;padding-top:0.736rem;padding-right:0.736rem;padding-bottom:1.104rem;padding-left:0.736rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:260px auto 1fr;gap:0.69rem;max-width:100%;}
#node-image_product_example_3_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_3_20260920{margin:0;padding-right:0.368rem;padding-left:0.368rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.518rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_3_20260920{margin:0;padding-right:0.368rem;padding-left:0.368rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.846rem;line-height:1.5;max-width:100%;}
#node-text_product_examples_note_20260920{grid-column:2 / span 10;margin:0;padding-top:0.92rem;padding-right:1.104rem;padding-bottom:0.92rem;padding-left:1.104rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:18px;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:650;line-height:1.5;text-align:center;max-width:100%;}
#node-section_product_launch_20260920{position:relative;width:100%;min-width:0;padding-top:5.5rem;padding-right:4vw;padding-bottom:5.5rem;padding-left:4vw;background:#ff3030;color:#ffffff;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_launch_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;align-items:end;}
#node-text_product_launch_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:span 12 / span 12;max-width:100%;}
#node-text_product_launch_title_20260920{margin:0;max-width:18ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:span 8 / span 8;}
#node-text_product_launch_body_20260920{margin:0;max-width:52ch;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.966rem;font-weight:450;line-height:1.65;grid-column:span 8 / span 8;}
#node-block_product_launch_actions_20260920{grid-column:9 / span 4;grid-row:2 / span 2;display:grid;gap:0.644rem;justify-items:end;align-self:end;max-width:100%;}
#node-button_product_launch_hosting_20260920{width:fit-content;min-width:0;padding-top:13.8px;padding-right:21.16px;padding-bottom:13.8px;padding-left:21.16px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:13.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ffffff;color:#0b0b0b;border:1px solid #ffffff;max-width:100%;}
#node-button_product_launch_pricing_20260920{width:fit-content;min-width:0;padding-top:13.8px;padding-right:21.16px;padding-bottom:13.8px;padding-left:21.16px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:13.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.6);max-width:100%;}
#node-section_product_final_20260920{position:relative;width:100%;min-width:0;padding-top:5.5rem;padding-right:4vw;padding-bottom:5.5rem;padding-left:4vw;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_final_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;text-align:center;justify-items:center;}
#node-text_product_final_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.699rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:span 12 / span 12;max-width:100%;}
#node-text_product_final_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:2 / span 10;}
#node-text_product_final_body_20260920{margin:0;max-width:60ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.966rem;font-weight:450;line-height:1.65;grid-column:3 / span 8;}
#node-block_product_final_actions_20260920{grid-column:span 12 / span 12;display:flex;flex-wrap:wrap;justify-content:center;gap:0.736rem;padding-top:0.46rem;max-width:100%;}
#node-button_product_final_pricing_20260920{width:fit-content;min-width:0;padding-top:13.8px;padding-right:21.16px;padding-bottom:13.8px;padding-left:21.16px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:13.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;max-width:100%;}
#node-button_product_final_workflow_20260920{width:fit-content;min-width:0;padding-top:13.8px;padding-right:21.16px;padding-bottom:13.8px;padding-left:21.16px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:13.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;max-width:100%;}
#node-section_product_footer_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_alora_footer_20260921{position:relative;width:100%;min-width:0;padding-top:5.25rem;padding-right:4vw;padding-bottom:5.25rem;padding-left:4vw;background:#000000;color:#ffffff;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_alora_footer_inner_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;align-items:start;padding-bottom:2.3rem;}
#node-block_alora_footer_brand_20260921{grid-column:span 5 / span 5;display:grid;gap:0.92rem;padding-right:1.84rem;max-width:100%;}
#node-text_alora_footer_brand_20260921{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3.6vw, 3.6rem);font-weight:400;letter-spacing:-0.04em;line-height:1;max-width:100%;}
#node-text_alora_footer_tagline_20260921{margin:0;max-width:48ch;color:#d7d0cc;font-family:Inter, Arial, sans-serif;font-size:0.92rem;font-weight:450;line-height:1.68;}
#node-button_alora_footer_contact_20260921{width:fit-content;min-width:0;padding-top:12.88px;padding-right:20.24px;padding-bottom:12.88px;padding-left:20.24px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:13.8px;font-weight:800;line-height:1;text-align:center;cursor:pointer;text-decoration:none;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.58);max-width:100%;}
#node-block_alora_footer_product_20260921{grid-column:span 2 / span 2;display:grid;gap:0.662rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_1_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.718rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_1_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_help_20260921{grid-column:span 3 / span 3;display:grid;gap:0.662rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_2_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.718rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_2_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_5_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_legal_20260921{grid-column:span 2 / span 2;display:grid;gap:0.662rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_3_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.718rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_3_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.846rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_bottom_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.38rem;padding:0;background:transparent;align-items:center;padding-top:1.38rem;border-top:1px solid rgba(255,255,255,0.16);}
#node-text_alora_footer_copyright_20260921{grid-column:span 6 / span 6;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.754rem;line-height:1.4;max-width:100%;}
#node-text_alora_footer_support_20260921{grid-column:span 6 / span 6;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.754rem;line-height:1.4;text-align:right;max-width:100%;}
}

@media (max-width: 1023px) {
#node-section_product_header_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_092345f3{width:100%;padding-top:8px;padding-right:4vw;padding-bottom:8px;padding-left:4vw;display:grid;gap:0;color:#ffffff;border-bottom:1px solid rgba(255, 255, 255, 0.10);grid-template-columns:1fr;align-items:center;height:auto;align-content:center;min-height:0;background:#000000;border-color:#dccfbe;position:sticky;top:0;z-index:100;backdrop-filter:blur(18px);max-width:100%;}
#node-block_6f73c4ef{width:100%;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:1280px;min-width:0;justify-self:center;height:auto;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.75rem;color:#0a0a0a;margin:0 auto;align-items:center;}
#node-block_45fabccf{width:auto;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:auto;grid-row:auto;min-width:0;justify-self:start;color:#0a0a0a;}
#node-image_42a6e4e0{width:120px;object-fit:contain;position:relative;float:left;height:auto;max-width:100%;}
#node-block_9ab17177{width:auto;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;grid-column:auto;grid-row:auto;max-width:none;min-width:0;justify-self:end;height:auto;opacity:1;color:#0a0a0a;}
#node-section_product_hero_20260920{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:2rem;padding-bottom:4.5rem;padding-left:2rem;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;min-height:760px;align-content:center;max-width:100%;}
#node-block_product_hero_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:2.2rem;padding:0;background:transparent;align-items:center;}
#node-block_product_hero_copy_20260920{grid-column:auto;display:grid;gap:0.984rem;padding-right:0;min-width:0;max-width:100%;}
#node-text_product_hero_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_title_20260920{margin:0;max-width:18ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.8rem, 8vw, 4.6rem);font-weight:400;letter-spacing:-0.055em;line-height:0.92;overflow-wrap:break-word;}
#node-text_product_hero_intro_20260920{margin:0;max-width:59ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.861rem;font-weight:450;line-height:1.65;}
#node-block_product_hero_actions_20260920{display:flex;flex-wrap:wrap;gap:0.656rem;padding-top:0.328rem;max-width:100%;}
#node-button_product_hero_core_20260920{width:fit-content;min-width:0;padding-top:12.3px;padding-right:18.86px;padding-bottom:12.3px;padding-left:18.86px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:12.3px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;max-width:100%;}
#node-button_product_hero_workflow_20260920{width:fit-content;min-width:0;padding-top:12.3px;padding-right:18.86px;padding-bottom:12.3px;padding-left:18.86px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:12.3px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;max-width:100%;}
#node-block_product_hero_visual_20260920{grid-column:auto;min-width:0;min-height:500px;padding-top:0.82rem;padding-right:0.82rem;padding-bottom:0.82rem;padding-left:0.82rem;background:#0b0b0b;border-radius:32px;display:grid;grid-template-rows:auto 1fr auto;gap:0.656rem;box-shadow:0 30px 78px rgba(0,0,0,0.18);max-width:100%;}
#node-block_product_hero_model_bar_20260920{display:grid;grid-template-columns:1fr auto;gap:0.615rem;align-items:center;padding-top:0.246rem;padding-right:0.205rem;padding-bottom:0.246rem;padding-left:0.205rem;max-width:100%;}
#node-text_product_hero_model_brand_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_model_viewports_20260920{margin:0;color:#bdb5b1;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:800;letter-spacing:0.08em;line-height:1.2;text-align:right;max-width:100%;}
#node-block_product_hero_model_body_20260920{min-width:0;display:grid;grid-template-columns:0.58fr minmax(0, 2.18fr) minmax(104px, 0.97fr);gap:0.492rem;background:#1d1d1d;border-radius:22px;padding-top:0.574rem;padding-right:0.574rem;padding-bottom:0.574rem;padding-left:0.574rem;max-width:100%;}
#node-block_product_hero_model_rail_20260920{display:grid;align-content:start;gap:0.369rem;min-width:0;max-width:100%;}
#node-text_product_hero_rail_1_20260920{margin:0;padding-top:0.533rem;padding-right:0.287rem;padding-bottom:0.533rem;padding-left:0.287rem;background:#ff3030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.574rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_2_20260920{margin:0;padding-top:0.533rem;padding-right:0.287rem;padding-bottom:0.533rem;padding-left:0.287rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.574rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_3_20260920{margin:0;padding-top:0.533rem;padding-right:0.287rem;padding-bottom:0.533rem;padding-left:0.287rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.574rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_4_20260920{margin:0;padding-top:0.533rem;padding-right:0.287rem;padding-bottom:0.533rem;padding-left:0.287rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.574rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-block_product_hero_model_canvas_20260920{min-width:0;padding-top:0.451rem;padding-right:0.451rem;padding-bottom:0.451rem;padding-left:0.451rem;background:#fff4ef;border-radius:14px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.41rem;max-width:100%;}
#node-block_product_hero_canvas_nav_20260920{display:grid;grid-template-columns:1fr auto;gap:0.41rem;align-items:center;padding-top:0.246rem;padding-bottom:0.246rem;max-width:100%;}
#node-text_product_hero_canvas_logo_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.533rem;font-weight:900;max-width:100%;}
#node-text_product_hero_canvas_navlinks_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.41rem;font-weight:700;max-width:100%;}
#node-block_product_hero_canvas_hero_20260920{min-width:0;padding-top:0.82rem;padding-right:0.697rem;padding-bottom:0.82rem;padding-left:0.697rem;background:#ff3030;border-radius:12px;display:grid;align-content:center;gap:0.369rem;max-width:100%;}
#node-text_product_hero_canvas_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_canvas_title_20260920{margin:0;max-width:10ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.271rem;font-weight:400;letter-spacing:-0.04em;line-height:0.98;}
#node-text_product_hero_canvas_button_20260920{margin:0;width:fit-content;padding-top:0.312rem;padding-right:0.533rem;padding-bottom:0.312rem;padding-left:0.533rem;background:#ffffff;color:#0b0b0b;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.476rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_grid_20260920{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:0.369rem;max-width:100%;}
#node-block_product_hero_canvas_card_1_20260920{min-height:58px;padding:0.451rem;background:#ff8a1f;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_1_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_card_2_20260920{min-height:58px;padding:0.451rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_2_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:900;max-width:100%;}
#node-block_product_hero_model_inspector_20260920{min-width:0;padding-top:0.574rem;padding-right:0.451rem;padding-bottom:0.574rem;padding-left:0.451rem;background:#ffffff;border-radius:14px;display:grid;align-content:start;gap:0.328rem;max-width:100%;}
#node-text_product_hero_inspector_label_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.558rem;font-weight:900;letter-spacing:0.13em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_inspector_1_20260920{margin:0;padding-top:0.41rem;padding-bottom:0.41rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_2_20260920{margin:0;padding-top:0.41rem;padding-bottom:0.41rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_3_20260920{margin:0;padding-top:0.41rem;padding-bottom:0.41rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_4_20260920{margin:0;padding-top:0.41rem;padding-bottom:0.41rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_5_20260920{margin:0;padding-top:0.41rem;padding-bottom:0.41rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:750;max-width:100%;}
#node-text_product_hero_model_note_20260920{margin:0;padding-right:0.205rem;color:#a9a19d;font-family:Inter, Arial, sans-serif;font-size:0.558rem;font-weight:650;line-height:1.35;text-align:right;max-width:100%;}
#node-section_product_entry_paths_20260920{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:2rem;padding-bottom:4.5rem;padding-left:2rem;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_paths_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.2rem;padding:0;background:transparent;}
#node-block_product_paths_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.779rem;padding-bottom:0.984rem;min-width:0;max-width:100%;}
#node-block_product_paths_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_paths_title_20260920{margin:0;max-width:20ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_paths_intro_20260920{margin:0;max-width:64ch;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:0.861rem;font-weight:450;line-height:1.65;}
#node-block_product_paths_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:0.82rem;align-items:stretch;max-width:100%;}
#node-block_product_path_card_1_20260920{min-width:0;min-height:0;height:100%;padding-top:1.353rem;padding-right:1.23rem;padding-bottom:1.189rem;padding-left:1.23rem;background:#ff3030;color:#ffffff;border:1px solid #ff3030;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.656rem;max-width:100%;}
#node-text_product_path_1_number_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.189rem;line-height:1;max-width:100%;}
#node-text_product_path_1_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_1_title_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_1_body_20260920{margin:0;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.804rem;line-height:1.55;max-width:100%;}
#node-text_product_path_1_result_20260920{margin:0;padding-top:0.82rem;border-top:1px solid rgba(255,255,255,0.3);color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.689rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_2_20260920{min-width:0;min-height:0;height:100%;padding-top:1.353rem;padding-right:1.23rem;padding-bottom:1.189rem;padding-left:1.23rem;background:#ff8a1f;color:#0b0b0b;border:1px solid #ff8a1f;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.656rem;max-width:100%;}
#node-text_product_path_2_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.189rem;line-height:1;max-width:100%;}
#node-text_product_path_2_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_2_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_2_body_20260920{margin:0;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.804rem;line-height:1.55;max-width:100%;}
#node-text_product_path_2_result_20260920{margin:0;padding-top:0.82rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.689rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_3_20260920{min-width:0;min-height:0;height:100%;padding-top:1.353rem;padding-right:1.23rem;padding-bottom:1.189rem;padding-left:1.23rem;background:#ffffff;color:#0b0b0b;border:1px solid #dfd0c8;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.656rem;max-width:100%;}
#node-text_product_path_3_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.189rem;line-height:1;max-width:100%;}
#node-text_product_path_3_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_3_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_3_body_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.804rem;line-height:1.55;max-width:100%;}
#node-text_product_path_3_result_20260920{margin:0;padding-top:0.82rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.689rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-section_product_editable_core_20260920{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:2rem;padding-bottom:4.5rem;padding-left:2rem;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_core_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.2rem;padding:0;background:transparent;align-items:start;}
#node-block_product_core_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.779rem;padding-bottom:0.984rem;min-width:0;max-width:100%;}
#node-block_product_core_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_core_intro_20260920{margin:0;max-width:64ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.861rem;font-weight:450;line-height:1.65;}
#node-block_product_core_list_20260920{grid-column:span 12 / span 12;display:grid;gap:0;border-top:1px solid #0b0b0b;min-width:0;max-width:100%;}
#node-block_product_core_row_1_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:0.82rem;align-items:start;padding-top:1.025rem;padding-bottom:1.025rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_1_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_1_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.189rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_1_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.771rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_2_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:0.82rem;align-items:start;padding-top:1.025rem;padding-bottom:1.025rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_2_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.189rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_2_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.771rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_3_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:0.82rem;align-items:start;padding-top:1.025rem;padding-bottom:1.025rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_3_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.189rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_3_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.771rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_4_20260920{display:grid;grid-template-columns:0.65fr 1fr 1.8fr;gap:0.82rem;align-items:start;padding-top:1.025rem;padding-bottom:1.025rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_4_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.189rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_4_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.771rem;line-height:1.55;max-width:100%;}
#node-section_product_responsive_20260920{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:2rem;padding-bottom:4.5rem;padding-left:2rem;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_responsive_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:2rem;padding:0;background:transparent;align-items:center;}
#node-block_product_responsive_copy_20260920{grid-column:auto;display:grid;gap:0.82rem;padding-right:0;min-width:0;max-width:100%;}
#node-text_product_responsive_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_responsive_title_20260920{margin:0;max-width:16ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-text_product_responsive_intro_20260920{margin:0;max-width:55ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.861rem;font-weight:450;line-height:1.65;}
#node-block_product_responsive_points_20260920{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.574rem;padding-top:0.41rem;max-width:100%;}
#node-text_product_responsive_point_1_20260920{margin:0;padding-top:0.656rem;padding-right:0.697rem;padding-bottom:0.656rem;padding-left:0.697rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.722rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_2_20260920{margin:0;padding-top:0.656rem;padding-right:0.697rem;padding-bottom:0.656rem;padding-left:0.697rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.722rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_3_20260920{margin:0;padding-top:0.656rem;padding-right:0.697rem;padding-bottom:0.656rem;padding-left:0.697rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.722rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_4_20260920{margin:0;padding-top:0.656rem;padding-right:0.697rem;padding-bottom:0.656rem;padding-left:0.697rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.722rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-block_product_responsive_visual_20260920{grid-column:auto;min-height:450px;padding-top:1.23rem;padding-right:1.148rem;padding-bottom:1.148rem;padding-left:1.148rem;background:#ff8a1f;border-radius:32px;display:grid;grid-template-rows:auto 1fr auto;gap:0.984rem;max-width:100%;}
#node-text_product_responsive_visual_label_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_devices_20260920{display:grid;grid-template-columns:2.3fr 0.8fr;gap:0.82rem;align-items:end;min-width:0;max-width:100%;}
#node-block_product_responsive_desktop_20260920{min-height:320px;padding-top:0.574rem;padding-right:0.574rem;padding-bottom:0.574rem;padding-left:0.574rem;background:#ffffff;border:8px solid #0b0b0b;border-radius:20px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.451rem;box-shadow:0 22px 45px rgba(11,11,11,0.18);max-width:100%;}
#node-text_product_responsive_desktop_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_desktop_hero_20260920{background:#ff3030;border-radius:12px;max-width:100%;}
#node-block_product_responsive_desktop_grid_20260920{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.41rem;max-width:100%;}
#node-block_product_responsive_desktop_grid_1_20260920{background:#f3c2b7;border-radius:10px;max-width:100%;}
#node-block_product_responsive_desktop_grid_2_20260920{background:#0b0b0b;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_20260920{min-height:260px;padding-top:0.451rem;padding-right:0.369rem;padding-bottom:0.451rem;padding-left:0.369rem;background:#ffffff;border:7px solid #0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto 1.2fr 0.8fr;gap:0.369rem;box-shadow:0 18px 38px rgba(11,11,11,0.18);max-width:100%;}
#node-text_product_responsive_mobile_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_mobile_hero_20260920{background:#ff3030;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_card_20260920{background:#0b0b0b;border-radius:9px;max-width:100%;}
#node-block_product_responsive_breakpoints_20260920{display:flex;flex-wrap:wrap;gap:0.369rem;max-width:100%;}
#node-text_product_breakpoint_1_20260920{margin:0;padding-top:0.369rem;padding-right:0.533rem;padding-bottom:0.369rem;padding-left:0.533rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_2_20260920{margin:0;padding-top:0.369rem;padding-right:0.533rem;padding-bottom:0.369rem;padding-left:0.533rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_3_20260920{margin:0;padding-top:0.369rem;padding-right:0.533rem;padding-bottom:0.369rem;padding-left:0.533rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_4_20260920{margin:0;padding-top:0.369rem;padding-right:0.533rem;padding-bottom:0.369rem;padding-left:0.533rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_5_20260920{margin:0;padding-top:0.369rem;padding-right:0.533rem;padding-bottom:0.369rem;padding-left:0.533rem;background:#ff3030;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.508rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-section_product_systems_20260920{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:2rem;padding-bottom:4.5rem;padding-left:2rem;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_systems_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.2rem;padding:0;background:transparent;}
#node-block_product_systems_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.779rem;padding-bottom:0.984rem;min-width:0;max-width:100%;}
#node-block_product_systems_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_systems_title_20260920{margin:0;max-width:20ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_systems_intro_20260920{margin:0;max-width:64ch;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:0.861rem;font-weight:450;line-height:1.65;}
#node-block_product_systems_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.82rem;max-width:100%;}
#node-block_product_system_card_1_20260920{min-height:260px;padding-top:1.23rem;padding-right:1.148rem;padding-bottom:1.148rem;padding-left:1.148rem;background:#ff3030;color:#ffffff;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.656rem;max-width:100%;}
#node-text_product_system_number_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.107rem;line-height:1;max-width:100%;}
#node-text_product_system_title_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_1_20260920{margin:0;align-self:end;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.787rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_2_20260920{min-height:260px;padding-top:1.23rem;padding-right:1.148rem;padding-bottom:1.148rem;padding-left:1.148rem;background:#ff8a1f;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.656rem;max-width:100%;}
#node-text_product_system_number_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.107rem;line-height:1;max-width:100%;}
#node-text_product_system_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_2_20260920{margin:0;align-self:end;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.787rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_3_20260920{min-height:260px;padding-top:1.23rem;padding-right:1.148rem;padding-bottom:1.148rem;padding-left:1.148rem;background:#ffffff;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.656rem;max-width:100%;}
#node-text_product_system_number_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.107rem;line-height:1;max-width:100%;}
#node-text_product_system_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_3_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.787rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_4_20260920{min-height:260px;padding-top:1.23rem;padding-right:1.148rem;padding-bottom:1.148rem;padding-left:1.148rem;background:#f3c2b7;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.656rem;max-width:100%;}
#node-text_product_system_number_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.107rem;line-height:1;max-width:100%;}
#node-text_product_system_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_4_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.787rem;line-height:1.55;max-width:100%;}
#node-section_product_examples_20260920{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:2rem;padding-bottom:4.5rem;padding-left:2rem;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_examples_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.2rem;padding:0;background:transparent;}
#node-block_product_examples_heading_20260920{grid-column:span 12 / span 12;display:grid;gap:0.779rem;padding-bottom:0.984rem;min-width:0;max-width:100%;}
#node-block_product_examples_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_examples_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_examples_intro_20260920{margin:0;max-width:64ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.861rem;font-weight:450;line-height:1.65;}
#node-block_product_examples_grid_20260920{grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:0.82rem;max-width:100%;}
#node-block_product_example_card_1_20260920{min-width:0;padding-top:0.656rem;padding-right:0.656rem;padding-bottom:0.984rem;padding-left:0.656rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:320px auto 1fr;gap:0.615rem;max-width:100%;}
#node-image_product_example_1_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_1_20260920{margin:0;padding-right:0.328rem;padding-left:0.328rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.353rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_1_20260920{margin:0;padding-right:0.328rem;padding-left:0.328rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.754rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_2_20260920{min-width:0;padding-top:0.656rem;padding-right:0.656rem;padding-bottom:0.984rem;padding-left:0.656rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:320px auto 1fr;gap:0.615rem;max-width:100%;}
#node-image_product_example_2_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_2_20260920{margin:0;padding-right:0.328rem;padding-left:0.328rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.353rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_2_20260920{margin:0;padding-right:0.328rem;padding-left:0.328rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.754rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_3_20260920{min-width:0;padding-top:0.656rem;padding-right:0.656rem;padding-bottom:0.984rem;padding-left:0.656rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:320px auto 1fr;gap:0.615rem;max-width:100%;}
#node-image_product_example_3_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_3_20260920{margin:0;padding-right:0.328rem;padding-left:0.328rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.353rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_3_20260920{margin:0;padding-right:0.328rem;padding-left:0.328rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.754rem;line-height:1.5;max-width:100%;}
#node-text_product_examples_note_20260920{grid-column:span 12 / span 12;margin:0;padding-top:0.82rem;padding-right:0.984rem;padding-bottom:0.82rem;padding-left:0.984rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:18px;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:650;line-height:1.5;text-align:center;max-width:100%;}
#node-section_product_launch_20260920{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:2rem;padding-bottom:4.5rem;padding-left:2rem;background:#ff3030;color:#ffffff;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_launch_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.2rem;padding:0;background:transparent;align-items:end;}
#node-text_product_launch_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:span 12 / span 12;max-width:100%;}
#node-text_product_launch_title_20260920{margin:0;max-width:18ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:span 12 / span 12;}
#node-text_product_launch_body_20260920{margin:0;max-width:52ch;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.861rem;font-weight:450;line-height:1.65;grid-column:span 8 / span 8;}
#node-block_product_launch_actions_20260920{grid-column:9 / span 4;grid-row:3;display:grid;gap:0.574rem;justify-items:end;align-self:end;max-width:100%;}
#node-button_product_launch_hosting_20260920{width:fit-content;min-width:0;padding-top:12.3px;padding-right:18.86px;padding-bottom:12.3px;padding-left:18.86px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:12.3px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ffffff;color:#0b0b0b;border:1px solid #ffffff;max-width:100%;}
#node-button_product_launch_pricing_20260920{width:fit-content;min-width:0;padding-top:12.3px;padding-right:18.86px;padding-bottom:12.3px;padding-left:18.86px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:12.3px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.6);max-width:100%;}
#node-section_product_final_20260920{position:relative;width:100%;min-width:0;padding-top:4.5rem;padding-right:2rem;padding-bottom:4.5rem;padding-left:2rem;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_final_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.2rem;padding:0;background:transparent;text-align:center;justify-items:center;}
#node-text_product_final_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.623rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:span 12 / span 12;max-width:100%;}
#node-text_product_final_title_20260920{margin:0;max-width:20ch;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.5rem, 4.7vw, 5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:span 12 / span 12;}
#node-text_product_final_body_20260920{margin:0;max-width:60ch;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.861rem;font-weight:450;line-height:1.65;grid-column:span 12 / span 12;}
#node-block_product_final_actions_20260920{grid-column:span 12 / span 12;display:flex;flex-wrap:wrap;justify-content:center;gap:0.656rem;padding-top:0.41rem;max-width:100%;}
#node-button_product_final_pricing_20260920{width:fit-content;min-width:0;padding-top:12.3px;padding-right:18.86px;padding-bottom:12.3px;padding-left:18.86px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:12.3px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;max-width:100%;}
#node-button_product_final_workflow_20260920{width:fit-content;min-width:0;padding-top:12.3px;padding-right:18.86px;padding-bottom:12.3px;padding-left:18.86px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:12.3px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;max-width:100%;}
#node-section_product_footer_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_alora_footer_20260921{position:relative;width:100%;min-width:0;padding-top:4.25rem;padding-right:2rem;padding-bottom:4.25rem;padding-left:2rem;background:#000000;color:#ffffff;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_alora_footer_inner_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.23rem;padding:0;background:transparent;align-items:start;padding-bottom:2.05rem;}
#node-block_alora_footer_brand_20260921{grid-column:span 2 / span 2;display:grid;gap:0.82rem;padding-right:0;max-width:100%;}
#node-text_alora_footer_brand_20260921{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3.6vw, 3.6rem);font-weight:400;letter-spacing:-0.04em;line-height:1;max-width:100%;}
#node-text_alora_footer_tagline_20260921{margin:0;max-width:48ch;color:#d7d0cc;font-family:Inter, Arial, sans-serif;font-size:0.82rem;font-weight:450;line-height:1.68;}
#node-button_alora_footer_contact_20260921{width:fit-content;min-width:0;padding-top:11.48px;padding-right:18.04px;padding-bottom:11.48px;padding-left:18.04px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:12.3px;font-weight:800;line-height:1;text-align:center;cursor:pointer;text-decoration:none;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.58);max-width:100%;}
#node-block_alora_footer_product_20260921{grid-column:auto;display:grid;gap:0.59rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_1_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.64rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_1_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_help_20260921{grid-column:auto;display:grid;gap:0.59rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_2_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.64rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_2_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_5_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_legal_20260921{grid-column:auto;display:grid;gap:0.59rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_3_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.64rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_3_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.754rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_bottom_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.15rem;padding:0;background:transparent;align-items:center;padding-top:1.23rem;border-top:1px solid rgba(255,255,255,0.16);}
#node-text_alora_footer_copyright_20260921{grid-column:span 6 / span 6;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.672rem;line-height:1.4;max-width:100%;}
#node-text_alora_footer_support_20260921{grid-column:span 6 / span 6;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.672rem;line-height:1.4;text-align:right;max-width:100%;}
}

@media (max-width: 767px) {
#node-section_product_header_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_092345f3{width:100%;padding-top:8px;padding-right:1.25rem;padding-bottom:8px;padding-left:1.25rem;display:grid;gap:0;color:#ffffff;border-bottom:1px solid rgba(255, 255, 255, 0.10);grid-template-columns:1fr;align-items:center;height:auto;align-content:center;min-height:0;background:#000000;border-color:#dccfbe;position:sticky;top:0;z-index:100;backdrop-filter:blur(18px);max-width:100%;}
#node-block_6f73c4ef{width:100%;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:1280px;min-width:0;justify-self:center;height:auto;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.75rem;color:#0a0a0a;margin:0 auto;align-items:center;}
#node-block_45fabccf{width:auto;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:auto;grid-row:auto;min-width:0;justify-self:start;color:#0a0a0a;}
#node-image_42a6e4e0{width:106px;object-fit:contain;position:relative;float:left;height:auto;max-width:100%;}
#node-block_9ab17177{width:auto;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background:transparent;position:relative;float:left;grid-column:auto;grid-row:auto;max-width:none;min-width:0;justify-self:end;height:auto;opacity:1;color:#0a0a0a;}
#node-section_product_hero_20260920{position:relative;width:100%;min-width:0;padding-top:3.75rem;padding-right:1.2rem;padding-bottom:3.75rem;padding-left:1.2rem;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;min-height:0;align-content:center;max-width:100%;}
#node-block_product_hero_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:2rem;padding:0;background:transparent;align-items:center;}
#node-block_product_hero_copy_20260920{grid-column:auto;display:grid;gap:0.864rem;padding-right:0;min-width:0;max-width:100%;}
#node-text_product_hero_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_title_20260920{margin:0;max-width:100%;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.55rem, 13vw, 4rem);font-weight:400;letter-spacing:-0.055em;line-height:0.94;overflow-wrap:break-word;}
#node-text_product_hero_intro_20260920{margin:0;max-width:100%;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.65;}
#node-block_product_hero_actions_20260920{display:grid;flex-wrap:wrap;gap:0.576rem;padding-top:0.288rem;grid-template-columns:1fr;width:100%;max-width:100%;}
#node-button_product_hero_core_20260920{width:100%;min-width:0;padding-top:10.8px;padding-right:16.56px;padding-bottom:10.8px;padding-left:16.56px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:10.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;justify-self:stretch;max-width:100%;}
#node-button_product_hero_workflow_20260920{width:100%;min-width:0;padding-top:10.8px;padding-right:16.56px;padding-bottom:10.8px;padding-left:16.56px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:10.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;justify-self:stretch;max-width:100%;}
#node-block_product_hero_visual_20260920{grid-column:auto;min-width:0;min-height:0;padding-top:0.8rem;padding-right:0.8rem;padding-bottom:0.8rem;padding-left:0.8rem;background:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto 1fr auto;gap:0.576rem;box-shadow:0 30px 78px rgba(0,0,0,0.18);max-width:100%;}
#node-block_product_hero_model_bar_20260920{display:grid;grid-template-columns:1fr;gap:0.54rem;align-items:center;padding-top:0.216rem;padding-right:0.18rem;padding-bottom:0.216rem;padding-left:0.18rem;max-width:100%;}
#node-text_product_hero_model_brand_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_model_viewports_20260920{margin:0;color:#bdb5b1;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:800;letter-spacing:0.08em;line-height:1.2;text-align:left;max-width:100%;}
#node-block_product_hero_model_body_20260920{min-width:0;display:grid;grid-template-columns:0.55fr minmax(0, 2fr);gap:0.45rem;background:#1d1d1d;border-radius:22px;padding-top:0.504rem;padding-right:0.504rem;padding-bottom:0.504rem;padding-left:0.504rem;max-width:100%;}
#node-block_product_hero_model_rail_20260920{display:grid;align-content:start;gap:0.324rem;min-width:0;max-width:100%;}
#node-text_product_hero_rail_1_20260920{margin:0;padding-top:0.468rem;padding-right:0.252rem;padding-bottom:0.468rem;padding-left:0.252rem;background:#ff3030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.504rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_2_20260920{margin:0;padding-top:0.468rem;padding-right:0.252rem;padding-bottom:0.468rem;padding-left:0.252rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.504rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_3_20260920{margin:0;padding-top:0.468rem;padding-right:0.252rem;padding-bottom:0.468rem;padding-left:0.252rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.504rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-text_product_hero_rail_4_20260920{margin:0;padding-top:0.468rem;padding-right:0.252rem;padding-bottom:0.468rem;padding-left:0.252rem;background:#303030;color:#ffffff;border-radius:10px;font-family:Inter, Arial, sans-serif;font-size:0.504rem;font-weight:800;line-height:1;text-align:center;max-width:100%;}
#node-block_product_hero_model_canvas_20260920{min-width:0;padding-top:0.396rem;padding-right:0.396rem;padding-bottom:0.396rem;padding-left:0.396rem;background:#fff4ef;border-radius:14px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.36rem;max-width:100%;}
#node-block_product_hero_canvas_nav_20260920{display:grid;grid-template-columns:1fr auto;gap:0.36rem;align-items:center;padding-top:0.216rem;padding-bottom:0.216rem;max-width:100%;}
#node-text_product_hero_canvas_logo_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.468rem;font-weight:900;max-width:100%;}
#node-text_product_hero_canvas_navlinks_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.36rem;font-weight:700;max-width:100%;}
#node-block_product_hero_canvas_hero_20260920{min-width:0;padding-top:0.72rem;padding-right:0.612rem;padding-bottom:0.72rem;padding-left:0.612rem;background:#ff3030;border-radius:12px;display:grid;align-content:center;gap:0.324rem;max-width:100%;}
#node-text_product_hero_canvas_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_canvas_title_20260920{margin:0;max-width:10ch;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.116rem;font-weight:400;letter-spacing:-0.04em;line-height:0.98;}
#node-text_product_hero_canvas_button_20260920{margin:0;width:fit-content;padding-top:0.274rem;padding-right:0.468rem;padding-bottom:0.274rem;padding-left:0.468rem;background:#ffffff;color:#0b0b0b;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.418rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_grid_20260920{display:grid;grid-template-columns:minmax(0, 1fr);gap:0.324rem;max-width:100%;}
#node-block_product_hero_canvas_card_1_20260920{min-height:58px;padding:0.396rem;background:#ff8a1f;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_1_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:900;max-width:100%;}
#node-block_product_hero_canvas_card_2_20260920{min-height:58px;padding:0.396rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:10px;display:grid;align-items:end;max-width:100%;}
#node-text_product_hero_canvas_card_2_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:900;max-width:100%;}
#node-block_product_hero_model_inspector_20260920{min-width:0;padding-top:0.504rem;padding-right:0.396rem;padding-bottom:0.504rem;padding-left:0.396rem;background:#ffffff;border-radius:14px;display:none;align-content:start;gap:0.288rem;max-width:100%;}
#node-text_product_hero_inspector_label_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.49rem;font-weight:900;letter-spacing:0.13em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_hero_inspector_1_20260920{margin:0;padding-top:0.36rem;padding-bottom:0.36rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_2_20260920{margin:0;padding-top:0.36rem;padding-bottom:0.36rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_3_20260920{margin:0;padding-top:0.36rem;padding-bottom:0.36rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_4_20260920{margin:0;padding-top:0.36rem;padding-bottom:0.36rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:750;max-width:100%;}
#node-text_product_hero_inspector_5_20260920{margin:0;padding-top:0.36rem;padding-bottom:0.36rem;border-bottom:1px solid #dfd0c8;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:750;max-width:100%;}
#node-text_product_hero_model_note_20260920{margin:0;padding-right:0.18rem;color:#a9a19d;font-family:Inter, Arial, sans-serif;font-size:0.49rem;font-weight:650;line-height:1.35;text-align:left;max-width:100%;}
#node-section_product_entry_paths_20260920{position:relative;width:100%;min-width:0;padding-top:3.75rem;padding-right:1.2rem;padding-bottom:3.75rem;padding-left:1.2rem;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_paths_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:1rem;padding:0;background:transparent;}
#node-block_product_paths_heading_20260920{grid-column:auto;display:grid;gap:0.684rem;padding-bottom:0.864rem;min-width:0;max-width:100%;}
#node-block_product_paths_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_paths_title_20260920{margin:0;max-width:100%;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.25rem, 11vw, 3.5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_paths_intro_20260920{margin:0;max-width:100%;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.65;}
#node-block_product_paths_grid_20260920{grid-column:auto;display:grid;grid-template-columns:1fr;gap:0.72rem;align-items:stretch;max-width:100%;}
#node-block_product_path_card_1_20260920{min-width:0;min-height:0;height:100%;padding-top:1.188rem;padding-right:1.08rem;padding-bottom:1.044rem;padding-left:1.08rem;background:#ff3030;color:#ffffff;border:1px solid #ff3030;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.576rem;max-width:100%;}
#node-text_product_path_1_number_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:1.044rem;line-height:1;max-width:100%;}
#node-text_product_path_1_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_1_title_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_1_body_20260920{margin:0;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.706rem;line-height:1.55;max-width:100%;}
#node-text_product_path_1_result_20260920{margin:0;padding-top:0.72rem;border-top:1px solid rgba(255,255,255,0.3);color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.605rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_2_20260920{min-width:0;min-height:0;height:100%;padding-top:1.188rem;padding-right:1.08rem;padding-bottom:1.044rem;padding-left:1.08rem;background:#ff8a1f;color:#0b0b0b;border:1px solid #ff8a1f;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.576rem;max-width:100%;}
#node-text_product_path_2_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.044rem;line-height:1;max-width:100%;}
#node-text_product_path_2_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_2_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_2_body_20260920{margin:0;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.706rem;line-height:1.55;max-width:100%;}
#node-text_product_path_2_result_20260920{margin:0;padding-top:0.72rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.605rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-block_product_path_card_3_20260920{min-width:0;min-height:0;height:100%;padding-top:1.188rem;padding-right:1.08rem;padding-bottom:1.044rem;padding-left:1.08rem;background:#ffffff;color:#0b0b0b;border:1px solid #dfd0c8;border-radius:28px;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:0.576rem;max-width:100%;}
#node-text_product_path_3_number_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.044rem;line-height:1;max-width:100%;}
#node-text_product_path_3_kicker_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_path_3_title_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3vw, 3.2rem);font-weight:400;letter-spacing:-0.04em;line-height:0.98;max-width:100%;}
#node-text_product_path_3_body_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.706rem;line-height:1.55;max-width:100%;}
#node-text_product_path_3_result_20260920{margin:0;padding-top:0.72rem;border-top:1px solid rgba(11,11,11,0.2);color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.605rem;font-weight:850;text-transform:uppercase;letter-spacing:0.06em;max-width:100%;}
#node-section_product_editable_core_20260920{position:relative;width:100%;min-width:0;padding-top:3.75rem;padding-right:1.2rem;padding-bottom:3.75rem;padding-left:1.2rem;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_core_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:1rem;padding:0;background:transparent;align-items:start;}
#node-block_product_core_heading_20260920{grid-column:auto;display:grid;gap:0.684rem;padding-bottom:0.864rem;min-width:0;max-width:100%;}
#node-block_product_core_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_20260920{margin:0;max-width:100%;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.25rem, 11vw, 3.5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_core_intro_20260920{margin:0;max-width:100%;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.65;}
#node-block_product_core_list_20260920{grid-column:auto;display:grid;gap:0;border-top:1px solid #0b0b0b;min-width:0;max-width:100%;}
#node-block_product_core_row_1_20260920{display:grid;grid-template-columns:1fr;gap:0.35rem;align-items:start;padding-top:0.9rem;padding-bottom:0.9rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_1_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_1_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.044rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_1_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.677rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_2_20260920{display:grid;grid-template-columns:1fr;gap:0.35rem;align-items:start;padding-top:0.9rem;padding-bottom:0.9rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_2_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.044rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_2_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.677rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_3_20260920{display:grid;grid-template-columns:1fr;gap:0.35rem;align-items:start;padding-top:0.9rem;padding-bottom:0.9rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_3_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.044rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_3_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.677rem;line-height:1.55;max-width:100%;}
#node-block_product_core_row_4_20260920{display:grid;grid-template-columns:1fr;gap:0.35rem;align-items:start;padding-top:0.9rem;padding-bottom:0.9rem;border-bottom:1px solid #dfd0c8;min-width:0;max-width:100%;}
#node-block_product_core_label_4_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_core_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.044rem;font-weight:400;line-height:1.05;max-width:100%;}
#node-block_product_core_copy_4_20260920{margin:0;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.677rem;line-height:1.55;max-width:100%;}
#node-section_product_responsive_20260920{position:relative;width:100%;min-width:0;padding-top:3.75rem;padding-right:1.2rem;padding-bottom:3.75rem;padding-left:1.2rem;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_responsive_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:1.5rem;padding:0;background:transparent;align-items:center;}
#node-block_product_responsive_copy_20260920{grid-column:auto;display:grid;gap:0.72rem;padding-right:0;min-width:0;max-width:100%;}
#node-text_product_responsive_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-text_product_responsive_title_20260920{margin:0;max-width:100%;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.25rem, 11vw, 3.5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-text_product_responsive_intro_20260920{margin:0;max-width:100%;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.65;}
#node-block_product_responsive_points_20260920{display:grid;grid-template-columns:1fr;gap:0.504rem;padding-top:0.36rem;max-width:100%;}
#node-text_product_responsive_point_1_20260920{margin:0;padding-top:0.576rem;padding-right:0.612rem;padding-bottom:0.576rem;padding-left:0.612rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.634rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_2_20260920{margin:0;padding-top:0.576rem;padding-right:0.612rem;padding-bottom:0.576rem;padding-left:0.612rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.634rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_3_20260920{margin:0;padding-top:0.576rem;padding-right:0.612rem;padding-bottom:0.576rem;padding-left:0.612rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.634rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-text_product_responsive_point_4_20260920{margin:0;padding-top:0.576rem;padding-right:0.612rem;padding-bottom:0.576rem;padding-left:0.612rem;background:#ffffff;border:1px solid #dfd0c8;border-radius:14px;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.634rem;font-weight:750;line-height:1.35;max-width:100%;}
#node-block_product_responsive_visual_20260920{grid-column:auto;min-height:0;padding-top:1.2rem;padding-right:1rem;padding-bottom:1.2rem;padding-left:1rem;background:#ff8a1f;border-radius:24px;display:grid;grid-template-rows:auto 1fr auto;gap:0.864rem;max-width:100%;}
#node-text_product_responsive_visual_label_20260920{margin:0;color:#0b0b0b;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_devices_20260920{display:grid;grid-template-columns:2.3fr 0.8fr;gap:0.72rem;align-items:end;min-width:0;max-width:100%;}
#node-block_product_responsive_desktop_20260920{min-height:250px;padding-top:0.504rem;padding-right:0.504rem;padding-bottom:0.504rem;padding-left:0.504rem;background:#ffffff;border:8px solid #0b0b0b;border-radius:20px;display:grid;grid-template-rows:auto 1.3fr 0.8fr;gap:0.396rem;box-shadow:0 22px 45px rgba(11,11,11,0.18);border-width:6px;max-width:100%;}
#node-text_product_responsive_desktop_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_desktop_hero_20260920{background:#ff3030;border-radius:12px;max-width:100%;}
#node-block_product_responsive_desktop_grid_20260920{display:grid;grid-template-columns:minmax(0, 1fr);gap:0.36rem;max-width:100%;}
#node-block_product_responsive_desktop_grid_1_20260920{background:#f3c2b7;border-radius:10px;max-width:100%;}
#node-block_product_responsive_desktop_grid_2_20260920{background:#0b0b0b;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_20260920{min-height:210px;padding-top:0.396rem;padding-right:0.324rem;padding-bottom:0.396rem;padding-left:0.324rem;background:#ffffff;border:7px solid #0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto 1.2fr 0.8fr;gap:0.324rem;box-shadow:0 18px 38px rgba(11,11,11,0.18);border-width:5px;max-width:100%;}
#node-text_product_responsive_mobile_bar_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_responsive_mobile_hero_20260920{background:#ff3030;border-radius:10px;max-width:100%;}
#node-block_product_responsive_mobile_card_20260920{background:#0b0b0b;border-radius:9px;max-width:100%;}
#node-block_product_responsive_breakpoints_20260920{display:flex;flex-wrap:wrap;gap:0.324rem;max-width:100%;}
#node-text_product_breakpoint_1_20260920{margin:0;padding-top:0.324rem;padding-right:0.468rem;padding-bottom:0.324rem;padding-left:0.468rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_2_20260920{margin:0;padding-top:0.324rem;padding-right:0.468rem;padding-bottom:0.324rem;padding-left:0.468rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_3_20260920{margin:0;padding-top:0.324rem;padding-right:0.468rem;padding-bottom:0.324rem;padding-left:0.468rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_4_20260920{margin:0;padding-top:0.324rem;padding-right:0.468rem;padding-bottom:0.324rem;padding-left:0.468rem;background:#0b0b0b;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-text_product_breakpoint_5_20260920{margin:0;padding-top:0.324rem;padding-right:0.468rem;padding-bottom:0.324rem;padding-left:0.468rem;background:#ff3030;color:#ffffff;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:0.446rem;font-weight:900;letter-spacing:0.06em;max-width:100%;}
#node-section_product_systems_20260920{position:relative;width:100%;min-width:0;padding-top:3.75rem;padding-right:1.2rem;padding-bottom:3.75rem;padding-left:1.2rem;background:#0b0b0b;color:#ffffff;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_systems_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:1rem;padding:0;background:transparent;}
#node-block_product_systems_heading_20260920{grid-column:auto;display:grid;gap:0.684rem;padding-bottom:0.864rem;min-width:0;max-width:100%;}
#node-block_product_systems_kicker_20260920{margin:0;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_systems_title_20260920{margin:0;max-width:100%;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.25rem, 11vw, 3.5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_systems_intro_20260920{margin:0;max-width:100%;color:#cfc7c2;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.65;}
#node-block_product_systems_grid_20260920{grid-column:auto;display:grid;grid-template-columns:1fr;gap:0.72rem;max-width:100%;}
#node-block_product_system_card_1_20260920{min-height:0;padding-top:1.08rem;padding-right:1.008rem;padding-bottom:1.008rem;padding-left:1.008rem;background:#ff3030;color:#ffffff;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.576rem;max-width:100%;}
#node-text_product_system_number_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:0.972rem;line-height:1;max-width:100%;}
#node-text_product_system_title_1_20260920{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_1_20260920{margin:0;align-self:end;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:0.691rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_2_20260920{min-height:0;padding-top:1.08rem;padding-right:1.008rem;padding-bottom:1.008rem;padding-left:1.008rem;background:#ff8a1f;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.576rem;max-width:100%;}
#node-text_product_system_number_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:0.972rem;line-height:1;max-width:100%;}
#node-text_product_system_title_2_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_2_20260920{margin:0;align-self:end;color:#2f2115;font-family:Inter, Arial, sans-serif;font-size:0.691rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_3_20260920{min-height:0;padding-top:1.08rem;padding-right:1.008rem;padding-bottom:1.008rem;padding-left:1.008rem;background:#ffffff;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.576rem;max-width:100%;}
#node-text_product_system_number_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:0.972rem;line-height:1;max-width:100%;}
#node-text_product_system_title_3_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_3_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.691rem;line-height:1.55;max-width:100%;}
#node-block_product_system_card_4_20260920{min-height:0;padding-top:1.08rem;padding-right:1.008rem;padding-bottom:1.008rem;padding-left:1.008rem;background:#f3c2b7;color:#0b0b0b;border-radius:24px;display:grid;grid-template-rows:auto auto 1fr;gap:0.576rem;max-width:100%;}
#node-text_product_system_number_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:0.972rem;line-height:1;max-width:100%;}
#node-text_product_system_title_4_20260920{margin:0;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;letter-spacing:-0.035em;line-height:1;max-width:100%;}
#node-text_product_system_body_4_20260920{margin:0;align-self:end;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.691rem;line-height:1.55;max-width:100%;}
#node-section_product_examples_20260920{position:relative;width:100%;min-width:0;padding-top:3.75rem;padding-right:1.2rem;padding-bottom:3.75rem;padding-left:1.2rem;background:#ffffff;color:#0b0b0b;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_examples_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:1rem;padding:0;background:transparent;}
#node-block_product_examples_heading_20260920{grid-column:auto;display:grid;gap:0.684rem;padding-bottom:0.864rem;min-width:0;max-width:100%;}
#node-block_product_examples_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;max-width:100%;}
#node-block_product_examples_title_20260920{margin:0;max-width:100%;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.25rem, 11vw, 3.5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;}
#node-block_product_examples_intro_20260920{margin:0;max-width:100%;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.65;}
#node-block_product_examples_grid_20260920{grid-column:auto;display:grid;grid-template-columns:1fr;gap:0.72rem;max-width:100%;}
#node-block_product_example_card_1_20260920{min-width:0;padding-top:0.576rem;padding-right:0.576rem;padding-bottom:0.864rem;padding-left:0.576rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:220px auto 1fr;gap:0.54rem;max-width:100%;}
#node-image_product_example_1_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_1_20260920{margin:0;padding-right:0.288rem;padding-left:0.288rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.188rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_1_20260920{margin:0;padding-right:0.288rem;padding-left:0.288rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.662rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_2_20260920{min-width:0;padding-top:0.576rem;padding-right:0.576rem;padding-bottom:0.864rem;padding-left:0.576rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:220px auto 1fr;gap:0.54rem;max-width:100%;}
#node-image_product_example_2_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_2_20260920{margin:0;padding-right:0.288rem;padding-left:0.288rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.188rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_2_20260920{margin:0;padding-right:0.288rem;padding-left:0.288rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.662rem;line-height:1.5;max-width:100%;}
#node-block_product_example_card_3_20260920{min-width:0;padding-top:0.576rem;padding-right:0.576rem;padding-bottom:0.864rem;padding-left:0.576rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:24px;display:grid;grid-template-rows:220px auto 1fr;gap:0.54rem;max-width:100%;}
#node-image_product_example_3_20260920{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ffffff;border-radius:16px;max-width:100%;}
#node-text_product_example_title_3_20260920{margin:0;padding-right:0.288rem;padding-left:0.288rem;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:1.188rem;font-weight:400;letter-spacing:-0.03em;line-height:1.05;max-width:100%;}
#node-text_product_example_body_3_20260920{margin:0;padding-right:0.288rem;padding-left:0.288rem;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.662rem;line-height:1.5;max-width:100%;}
#node-text_product_examples_note_20260920{grid-column:auto;margin:0;padding-top:0.72rem;padding-right:0.864rem;padding-bottom:0.72rem;padding-left:0.864rem;background:#fff4ef;border:1px solid #dfd0c8;border-radius:18px;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:650;line-height:1.5;text-align:left;max-width:100%;}
#node-section_product_launch_20260920{position:relative;width:100%;min-width:0;padding-top:3.75rem;padding-right:1.2rem;padding-bottom:3.75rem;padding-left:1.2rem;background:#ff3030;color:#ffffff;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_launch_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:1rem;padding:0;background:transparent;align-items:end;}
#node-text_product_launch_kicker_20260920{margin:0;color:#ffffff;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:auto;max-width:100%;}
#node-text_product_launch_title_20260920{margin:0;max-width:100%;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.25rem, 11vw, 3.5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:auto;}
#node-text_product_launch_body_20260920{margin:0;max-width:100%;color:#fff0ec;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.65;grid-column:auto;}
#node-block_product_launch_actions_20260920{grid-column:auto;grid-row:auto;display:grid;gap:0.504rem;justify-items:stretch;align-self:end;width:100%;max-width:100%;}
#node-button_product_launch_hosting_20260920{width:100%;min-width:0;padding-top:10.8px;padding-right:16.56px;padding-bottom:10.8px;padding-left:16.56px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:10.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ffffff;color:#0b0b0b;border:1px solid #ffffff;justify-self:stretch;max-width:100%;}
#node-button_product_launch_pricing_20260920{width:100%;min-width:0;padding-top:10.8px;padding-right:16.56px;padding-bottom:10.8px;padding-left:16.56px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:10.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.6);justify-self:stretch;max-width:100%;}
#node-section_product_final_20260920{position:relative;width:100%;min-width:0;padding-top:3.75rem;padding-right:1.2rem;padding-bottom:3.75rem;padding-left:1.2rem;background:#fff4ef;color:#0b0b0b;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_product_final_inner_20260920{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:1rem;padding:0;background:transparent;text-align:center;justify-items:center;}
#node-text_product_final_kicker_20260920{margin:0;color:#ff3030;font-family:Inter, Arial, sans-serif;font-size:0.547rem;font-weight:900;letter-spacing:0.18em;line-height:1.2;text-transform:uppercase;grid-column:auto;max-width:100%;}
#node-text_product_final_title_20260920{margin:0;max-width:100%;color:#0b0b0b;font-family:Georgia, Times New Roman, serif;font-size:clamp(2.25rem, 11vw, 3.5rem);font-weight:400;letter-spacing:-0.045em;line-height:0.96;overflow-wrap:break-word;grid-column:auto;}
#node-text_product_final_body_20260920{margin:0;max-width:100%;color:#695f5a;font-family:Inter, Arial, sans-serif;font-size:1rem;font-weight:450;line-height:1.65;grid-column:auto;}
#node-block_product_final_actions_20260920{grid-column:auto;display:grid;flex-wrap:wrap;justify-content:center;gap:0.576rem;padding-top:0.36rem;grid-template-columns:1fr;width:100%;max-width:100%;}
#node-button_product_final_pricing_20260920{width:100%;min-width:0;padding-top:10.8px;padding-right:16.56px;padding-bottom:10.8px;padding-left:16.56px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:10.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:#ff3030;color:#ffffff;border:1px solid #ff3030;justify-self:stretch;max-width:100%;}
#node-button_product_final_workflow_20260920{width:100%;min-width:0;padding-top:10.8px;padding-right:16.56px;padding-bottom:10.8px;padding-left:16.56px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:10.8px;font-weight:800;line-height:1;text-align:center;text-decoration:none;cursor:pointer;background:transparent;color:#0b0b0b;border:1.5px solid #0b0b0b;justify-self:stretch;max-width:100%;}
#node-section_product_footer_20260920{width:100%;padding:0;background:transparent;position:relative;display:block;max-width:100%;color:#0a0a0a;}
#node-section_alora_footer_20260921{position:relative;width:100%;min-width:0;padding-top:3.5rem;padding-right:1.2rem;padding-bottom:1.5rem;padding-left:1.2rem;background:#000000;color:#ffffff;display:grid;grid-template-columns:minmax(0, 1fr);gap:1rem;overflow:hidden;scroll-margin-top:88px;max-width:100%;}
#node-block_alora_footer_inner_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:2rem;padding:0;background:transparent;align-items:start;padding-bottom:1.8rem;}
#node-block_alora_footer_brand_20260921{grid-column:auto;display:grid;gap:0.72rem;padding-right:0;max-width:100%;}
#node-text_alora_footer_brand_20260921{margin:0;color:#ffffff;font-family:Georgia, Times New Roman, serif;font-size:clamp(2rem, 3.6vw, 3.6rem);font-weight:400;letter-spacing:-0.04em;line-height:1;max-width:100%;}
#node-text_alora_footer_tagline_20260921{margin:0;max-width:100%;color:#d7d0cc;font-family:Inter, Arial, sans-serif;font-size:0.98rem;font-weight:450;line-height:1.68;}
#node-button_alora_footer_contact_20260921{width:100%;min-width:0;padding-top:10.08px;padding-right:15.84px;padding-bottom:10.08px;padding-left:15.84px;border-radius:999px;font-family:Inter, Arial, sans-serif;font-size:10.8px;font-weight:800;line-height:1;text-align:center;cursor:pointer;text-decoration:none;background:transparent;color:#ffffff;border:1.5px solid rgba(255,255,255,0.58);justify-self:stretch;max-width:100%;}
#node-block_alora_footer_product_20260921{grid-column:auto;display:grid;gap:0.518rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_1_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.562rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_1_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_1_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_help_20260921{grid-column:auto;display:grid;gap:0.518rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_2_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.562rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_2_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_4_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_2_5_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_legal_20260921{grid-column:auto;display:grid;gap:0.518rem;align-content:start;max-width:100%;}
#node-text_alora_footer_column_3_20260921{margin:0 0 0.25rem;color:#ff8a1f;font-family:Inter, Arial, sans-serif;font-size:0.562rem;font-weight:900;letter-spacing:0.13em;text-transform:uppercase;max-width:100%;}
#node-text_alora_footer_link_3_1_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_2_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-text_alora_footer_link_3_3_20260921{margin:0;color:#eee8e4;font-family:Inter, Arial, sans-serif;font-size:0.662rem;font-weight:600;line-height:1.4;text-decoration:none;max-width:100%;}
#node-block_alora_footer_bottom_20260921{width:100%;max-width:1220px;min-width:0;justify-self:center;grid-column:span 12 / span 12;display:grid;grid-template-columns:1fr;gap:0.8rem;padding:0;background:transparent;align-items:center;padding-top:1.08rem;border-top:1px solid rgba(255,255,255,0.16);}
#node-text_alora_footer_copyright_20260921{grid-column:auto;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.59rem;line-height:1.4;max-width:100%;}
#node-text_alora_footer_support_20260921{grid-column:auto;margin:0;color:#aaa29d;font-family:Inter, Arial, sans-serif;font-size:0.59rem;line-height:1.4;text-align:left;max-width:100%;}
}

#node-section_product_header_20260920 .site-nav { --nav-text: #ffffff !important; --nav-link-text: #ffffff !important; --nav-hover-bg: rgba(255,255,255,0.12) !important; --nav-hover-text: #ffffff !important; --nav-active-bg: #ff3030 !important; --nav-active-text: #ffffff !important; }
#node-section_product_entry_paths_20260920 [id^="node-block_product_path_card_"], #node-section_product_examples_20260920 [id^="node-block_product_example_card_"] { transition: transform 180ms ease, box-shadow 180ms ease; }
#node-section_product_entry_paths_20260920 [id^="node-block_product_path_card_"]:hover, #node-section_product_examples_20260920 [id^="node-block_product_example_card_"]:hover { transform: translateY(-4px); }