    :root {
      --bg: #040405;
      --bg-alt: #0a0a0c;
      --glass: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(255, 255, 255, 0.1);
      --text: #f0f0f0;
      --text-muted: #b0b0b0;
      --text-dim: #7e7e7e;
      --accent: #00ff66;
      --accent2: #ff2a6d;
      --accent3: #05d9e8;
      --font-display: "Syne", sans-serif;
      --font-body: "Space Grotesk", sans-serif;
      --container: 1200px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden;
      background-image:
        linear-gradient(rgba(0, 255, 102, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 102, 0.02) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    a { color: inherit; text-decoration: none; }
    .container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
    .section { padding: 5rem 0; position: relative; z-index: 1; }
    .section-tag {
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.75rem;
      margin-bottom: 1rem;
    }
    .section-tag span { color: var(--accent); }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 5vw, 3.2rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
      text-transform: uppercase;
    }
    .section-intro {
      color: var(--text-muted);
      max-width: 760px;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      width: 100%;
      background: var(--accent2);
      transform: scaleX(0);
      transform-origin: left;
      z-index: 999;
      box-shadow: 0 0 10px var(--accent2);
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1rem 0;
      border-bottom: 1px solid transparent;
      transition: background 0.3s, border-color 0.3s;
    }
    .nav.scrolled {
      background: rgba(4, 4, 5, 0.9);
      border-color: var(--glass-border);
      backdrop-filter: blur(10px);
    }
    .nav__inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .nav__logo {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      font-weight: 800;
    }
    .nav__logo span { color: var(--accent2); }
    .nav__links {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav__links a {
      color: var(--text-muted);
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .nav__links a:hover { color: var(--text); }
    .nav__cta {
      background: var(--accent);
      color: #000;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      padding: 0.6rem 0.9rem;
    }
    .nav__toggle {
      display: none;
      background: none;
      border: 0;
      color: var(--text);
      font-size: 1.35rem;
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
      text-align: center;
      padding: 8rem 0 4rem;
    }
    .hero__slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero__slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.06);
      animation: heroSlide 21s infinite;
    }
    .hero__slide:nth-child(2) { animation-delay: 7s; }
    .hero__slide:nth-child(3) { animation-delay: 14s; }
    /* Scrim keeps the headline and nav legible over the photography. */
    .hero__slides::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(4, 4, 5, 0.88) 0%, rgba(4, 4, 5, 0.62) 45%, rgba(4, 4, 5, 0.94) 100%),
        radial-gradient(circle at 50% 45%, rgba(0, 255, 102, 0.08), transparent 60%);
    }
    @keyframes heroSlide {
      0%   { opacity: 0; transform: scale(1.06); }
      6%   { opacity: 1; }
      33%  { opacity: 1; }
      39%  { opacity: 0; }
      100% { opacity: 0; transform: scale(1.13); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero__slide { animation: none; opacity: 0; transform: none; }
      .hero__slide:first-child { opacity: 1; }
    }
    .hero .container { position: relative; z-index: 2; }
    .hero__tag {
      color: var(--accent3);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-size: 0.75rem;
      margin-bottom: 1rem;
    }
    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 9vw, 6.6rem);
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      text-shadow: 3px 3px 0 rgba(255, 42, 109, 0.35), -2px -2px 0 rgba(0, 255, 102, 0.25);
      margin-bottom: 1rem;
    }
    .hero__sub {
      max-width: 760px;
      margin: 0 auto;
      color: var(--text-muted);
      line-height: 1.65;
      font-size: 1.05rem;
    }
    .hero__actions {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .hero__btn {
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.76rem;
      font-weight: 700;
      padding: 0.9rem 1.2rem;
      border: 1px solid var(--glass-border);
      transition: 0.2s;
    }
    .hero__btn--primary {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
    }
    .hero__btn--ghost:hover { border-color: var(--accent3); color: var(--accent3); }
    .hero__btn--primary:hover { background: #fff; border-color: #fff; }

    .ticker {
      position: relative;
      z-index: 1;
      overflow: hidden;
      background: var(--bg-alt);
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
      padding: 0.9rem 0;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }
    .ticker__track {
      display: flex;
      width: max-content;
      animation: tickerScroll 45s linear infinite;
    }
    .ticker__group {
      display: flex;
      flex-shrink: 0;
    }
    .ticker__item {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
      padding-left: 1.6rem;
    }
    .ticker__item::after {
      content: "//";
      color: var(--accent);
      margin-left: 1.6rem;
      font-weight: 800;
    }
    /* Track holds two identical groups, so -50% lands exactly on the seam. */
    @keyframes tickerScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .ticker__track { animation: none; }
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }
    .card {
      background: var(--bg-alt);
      border: 1px solid var(--glass-border);
      padding: 1.2rem;
    }
    .card h3 {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: 1rem;
      margin-bottom: 0.75rem;
      color: var(--accent3);
    }
    .card p, .card li {
      color: var(--text-muted);
      line-height: 1.55;
      font-size: 0.95rem;
    }
    .detail-list {
      list-style: none;
      padding: 0;
      margin: 0.4rem 0 0;
      display: grid;
      gap: 0.65rem;
    }
    .detail-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      border: 1px solid var(--glass-border);
      background: rgba(255, 255, 255, 0.01);
      padding: 0.55rem 0.65rem;
    }
    .detail-icon {
      width: 1.1rem;
      text-align: center;
      color: var(--accent3);
      flex: 0 0 1.1rem;
    }
    .detail-list strong {
      color: var(--text);
      font-weight: 600;
    }
    .hours-list {
      list-style: none;
      padding: 0;
      margin: 0.4rem 0 0;
      display: grid;
      gap: 0.6rem;
    }
    .hours-list li {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      border: 1px solid var(--glass-border);
      background: rgba(255, 255, 255, 0.01);
      padding: 0.55rem 0.65rem;
      color: var(--text-muted);
    }
    .hours-list li span:last-child {
      color: var(--text);
      font-weight: 600;
      text-align: right;
    }
    ul { padding-left: 1.15rem; }
    li + li { margin-top: 0.35rem; }
    .callout {
      border-left: 3px solid var(--accent2);
      padding-left: 0.85rem;
      margin-top: 1rem;
      color: var(--text-muted);
    }

    .brand-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: clamp(0.4rem, 1.2vw, 0.7rem);
      list-style: none;
      padding: 0;
      margin-top: 1rem;
    }
    .brand-list li {
      border: 1px solid var(--glass-border);
      background: var(--bg-alt);
      padding: clamp(0.45rem, 1.5vw, 0.75rem);
      text-align: center;
      font-size: 0.9rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: clamp(64px, 11vw, 84px);
    }
    .brand-list li:has(img) {
      background: #fff;
    }
    .brand-list li.brand--dark {
      background: var(--bg-alt);
    }
    .brand-list li.brand--more a {
      color: var(--accent);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.8rem;
    }
    .brand-list li.brand--more:hover {
      border-color: var(--accent);
    }
    .brand-list li img {
      max-height: clamp(40px, 8vw, 56px);
      max-width: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .embed-wrap {
      border: 1px solid var(--glass-border);
      background: var(--bg-alt);
      padding: 0.6rem;
      margin-top: 1rem;
    }

    .footer {
      border-top: 1px solid var(--glass-border);
      background: #020202;
      padding: 3rem 0 2rem;
    }
    .footer__top {
      display: flex;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }
    .footer__logo {
      font-family: var(--font-display);
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }
    .footer__logo span { color: var(--accent); }
    .footer__links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }
    .footer__links a { color: var(--text-muted); font-size: 0.86rem; }
    .footer__meta {
      color: var(--text-dim);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-top: 1px dashed var(--glass-border);
      padding-top: 0.9rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .back-to-top {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 120;
      border: 1px solid var(--glass-border);
      background: rgba(4, 4, 5, 0.92);
      color: var(--text);
      padding: 0.65rem 0.8rem;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.2s ease;
    }
    .back-to-top:hover {
      border-color: var(--accent3);
      color: var(--accent3);
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    @media (max-width: 900px) {
      .grid-2 { grid-template-columns: 1fr; }
      .brand-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 560px) {
      .brand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 760px) {
      .nav__links,
      .nav__cta { display: none; }
      .nav__toggle { display: inline-block; }
      .nav.menu-open .nav__links {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(4, 4, 5, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.3rem;
      }
      .nav.menu-open .nav__links a {
        color: var(--text);
        font-family: var(--font-display);
        font-size: 1.2rem;
      }
      .hero__actions { flex-direction: column; align-items: center; }
      .hero__btn { width: min(280px, 100%); text-align: center; }
    }

    .read-more {
      display: inline-block;
      margin-top: 0.4rem;
      color: var(--accent);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.78rem;
      border-bottom: 1px solid transparent;
      transition: 0.2s;
    }
    .read-more:hover { border-bottom-color: var(--accent); }
    .nav__links a[aria-current="page"] { color: var(--accent); }
    .section.page-head { padding-top: 9rem; }

    .card--feature {
      padding: clamp(1.4rem, 3vw, 2rem);
      display: flex;
      flex-direction: column;
    }
    .card--feature .section-tag { margin-bottom: 0.9rem; }
    .card__title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3.2vw, 2.1rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .card--feature p { color: var(--text-muted); line-height: 1.65; }

    /* Parallax product section */
    .section--parallax {
      display: flex;
      align-items: center;
      min-height: 78vh;
      padding: 7rem 0;
      background-image: url("images/parallax1.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }
    .section--parallax::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(4, 4, 5, 0.92) 0%, rgba(4, 4, 5, 0.78) 50%, rgba(4, 4, 5, 0.94) 100%);
      z-index: 0;
    }
    .section--parallax > .container { position: relative; z-index: 1; width: 100%; }
    /* Let the photo read through the cards instead of being boxed out by them. */
    .section--parallax .card {
      background: rgba(10, 10, 12, 0.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    /* iOS Safari does not composite fixed backgrounds; pin it instead of letting it jump. */
    @media (max-width: 900px), (hover: none) {
      .section--parallax { background-attachment: scroll; }
    }

    /* Brands page */
    .page-head {
      padding: 9rem 0 2rem;
    }
    .brand-list--page {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      margin-top: 2rem;
    }
    .brand-count {
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.72rem;
      margin-top: 2.5rem;
    }
    @media (max-width: 560px) {
      .brand-list--page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
