
    :root {
      --pd: #1a0a0a;
      --pm: #c0392b;
      --pb: #e74c3c;
      --pl: #fadbd8;
      --pp: #fdf2f2;
      --ac: #c0392b;
      --al: #fadbd8;
      --ad: #7b241c;
      --t9: #1a0a0a;
      --t6: #3d1414;
      --t4: #7f3b3b;
      --bd: #f1c0bc;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    a,
    button {
      -webkit-tap-highlight-color: transparent;
      outline: none;
    }

    button {
      user-select: none;
    }

    a {
      user-select: none;
      text-decoration: none;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: #fff;
      color: var(--t9);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* MARQUEE */
    .mq {
      background: linear-gradient(90deg, var(--pd), var(--pm));
      position: sticky;
      top: 0;
      z-index: 950;
      height: 28px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .mq-track {
      display: flex;
      white-space: nowrap;
      animation: mq 32s linear infinite;
    }

    .mq-track span {
      font-size: .71rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .95);
      padding: 0 2.2rem;
      letter-spacing: .04em;
    }

    .mq-track span b {
      color: var(--ac);
      font-weight: 700;
    }

    @keyframes mq {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* DESKTOP HEADER */
    .hd {
      position: sticky;
      top: 28px;
      z-index: 900;
      background: #fff;
      border-bottom: 1px solid var(--bd);
      height: 64px;
      display: flex;
      align-items: center;
      box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
    }

    .hd-in {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .logo {
      flex-shrink: 0;
    }

    .logo img {
      height: 28px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .hd-in>a>img,
    .hd-in>a img {
      height: 28px !important;
      width: auto !important;
      max-width: 110px !important;
      display: block;
      object-fit: contain;
    }

    .dn {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .dn a {
      font-size: .82rem;
      font-weight: 500;
      color: var(--t6);
      padding: .4rem .72rem;
      border-radius: 7px;
      white-space: nowrap;
    }

    .dn a:hover,
    .dn a.active {
      color: var(--pd);
    }

    .dn a.nav-hl {
      background: linear-gradient(135deg, var(--pd), var(--pm));
      color: #fff;
      font-weight: 600;
      padding: .38rem .8rem;
    }

    .hd-cta {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }

    .btn-out {
      padding: .38rem 1rem;
      border-radius: 7px;
      border: 1.5px solid var(--pm);
      color: var(--pd);
      font-family: 'Outfit', sans-serif;
      font-size: .81rem;
      font-weight: 600;
      background: transparent;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-solid {
      padding: .38rem 1rem;
      border-radius: 7px;
      background: linear-gradient(135deg, var(--pd), var(--pm));
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: .81rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    /* MOBILE HEADER */
    .mh {
      display: none;
      position: sticky;
      top: 28px;
      z-index: 900;
      background: #fff;
      border-bottom: 1px solid var(--bd);
      height: 52px;
      align-items: center;
      justify-content: space-between;
      padding: 0 1rem;
    }

    .mh img {
      height: 26px;
      max-width: 100px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .hbg {
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .hbg span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--pd);
      border-radius: 2px;
      transition: all .28s;
    }

    .hbg.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hbg.open span:nth-child(2) {
      opacity: 0;
    }

    .hbg.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* SIDEBAR */
    .sb-ov {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 970;
      background: rgba(0, 0, 0, .45);
    }

    .sb {
      position: fixed;
      top: 0;
      left: -285px;
      bottom: 0;
      width: 285px;
      z-index: 980;
      background: #fff;
      transition: left .28s cubic-bezier(.4, 0, .2, 1);
      display: flex;
      flex-direction: column;
      border-right: 1px solid var(--bd);
    }

    .sb.open {
      left: 0;
    }

    .sb-top {
      padding: .9rem 1rem;
      border-bottom: 1px solid var(--bd);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
    }

    .sb-top img {
      height: 26px;
      width: auto;
      object-fit: contain;
    }

    .sb-close {
      width: 34px;
      height: 34px;
      background: var(--pp);
      border: 1px solid var(--bd);
      border-radius: 7px;
      cursor: pointer;
      font-size: .85rem;
      color: var(--pd);
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .sb-nav {
      padding: 1rem .6rem .5rem;
      flex: 1;
      overflow-y: auto;
    }

    .sb-nav a {
      display: block;
      padding: .65rem .9rem;
      border-radius: 8px;
      font-size: .9rem;
      font-weight: 500;
      color: var(--t6);
      margin-bottom: 2px;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
    }

    .sb-nav a:hover,
    .sb-nav a.active {
      background: var(--pp);
      color: var(--pd);
    }

    .sb-promo {
      margin: .5rem .6rem;
      border-radius: 11px;
      background: linear-gradient(135deg, var(--pd), var(--pm));
      padding: .95rem;
    }

    .sb-promo-lbl {
      font-size: .6rem;
      font-weight: 700;
      color: var(--ac);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: .28rem;
    }

    .sb-promo h4 {
      font-size: .88rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .2rem;
      line-height: 1.3;
    }

    .sb-promo p {
      font-size: .71rem;
      color: rgba(255, 255, 255, .75);
      font-weight: 300;
      margin-bottom: .65rem;
      line-height: 1.4;
    }

    .sb-promo a {
      display: inline-block;
      background: var(--ac);
      color: var(--t9);
      font-size: .74rem;
      font-weight: 700;
      padding: .28rem .82rem;
      border-radius: 6px;
      font-family: 'Outfit', sans-serif;
    }

    .sb-foot {
      padding: .8rem;
      border-top: 1px solid var(--bd);
      display: flex;
      flex-direction: column;
      gap: 7px;
      flex-shrink: 0;
    }

    .sb-foot a {
      display: block;
      text-align: center;
      padding: .58rem;
      border-radius: 8px;
      font-size: .86rem;
      font-weight: 600;
      font-family: 'Outfit', sans-serif;
    }

    .sb-ln {
      border: 1.5px solid var(--pm);
      color: var(--pd);
    }

    .sb-rg {
      background: linear-gradient(135deg, var(--pd), var(--pm));
      color: #fff;
    }

    /* COMMON SECTIONS */
    .sec {
      padding: 3.5rem 2rem;
    }

    .sec.pale {
      background: #fff;
    }

    .sec.dark {
      background: var(--pd);
    }

    .sec.dark2 {
      background: #0a1a0f;
    }

    .wrap {
      max-width: 1280px;
      margin: 0 auto;
    }

    .sc {
      text-align: center;
      margin-bottom: 2rem;
    }

    .sl {
      margin-bottom: 1.4rem;
    }

    .lbl {
      display: inline-block;
      font-size: .66rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--pm);
      margin-bottom: .28rem;
    }

    .dark .lbl,
    .dark2 .lbl {
      color: var(--ac);
    }

    .h2 {
      font-size: clamp(1.5rem, 2.4vw, 2.1rem);
      font-weight: 700;
      color: var(--t9);
      line-height: 1.2;
      letter-spacing: -.3px;
    }

    .dark .h2,
    .dark2 .h2 {
      color: #fff;
    }

    .ybar {
      display: block;
      width: 30px;
      height: 3px;
      background: var(--ac);
      border-radius: 2px;
      margin: .5rem auto 0;
    }

    .sl .ybar {
      margin: .5rem 0 0;
    }

    .btn-lg {
      display: inline-block;
      padding: .6rem 1.7rem;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--pd), var(--pm));
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: .86rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
    }

    .btn-lg-out {
      display: inline-block;
      padding: .6rem 1.7rem;
      border-radius: 8px;
      border: 1.5px solid var(--pm);
      color: var(--pd);
      font-family: 'Outfit', sans-serif;
      font-size: .86rem;
      font-weight: 600;
      background: transparent;
      cursor: pointer;
    }

    /* INNER PAGE HERO */
    .pg-hero {
      background: linear-gradient(135deg, var(--pd) 0%, var(--pm) 100%);
      padding: 2.8rem 2rem;
      text-align: center;
    }

    .pg-hero h1 {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: .3rem;
    }

    .pg-hero p {
      font-size: .9rem;
      color: rgba(255, 255, 255, .75);
      font-weight: 300;
    }

    /* SCROLL TOP */
    .stbtn {
      position: fixed;
      bottom: 1.3rem;
      right: 1.3rem;
      z-index: 500;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--pd), var(--pm));
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(8px);
      transition: all .25s;
      box-shadow: 0 3px 12px rgba(0, 0, 0, .25);
    }

    .stbtn.vis {
      opacity: 1;
      transform: translateY(0);
    }

    .stbtn svg {
      width: 16px;
      height: 16px;
      stroke: #fff;
      fill: none;
      stroke-width: 2.5;
    }

    @media(max-width:960px) {
      .hd {
        display: none;
      }

      .mh {
        display: flex;
      }

      .mq {
        top: 0;
      }

      .mh {
        top: 28px;
      }

      .sec {
        padding: 2rem 1rem;
      }

      .sec.dark,
      .sec.dark2 {
        padding: 2rem 1rem;
      }

      .pg-hero {
        padding: 1.8rem 1rem;
      }
    }

    @media(min-width:961px) {

      .sb,
      .sb-ov {
        display: none !important;
      }
    }