/* Hyperbyte-specific presentation on top of the Spectral template. */

:root {
    --hb-accent: #7ee6de;
    --hb-spectral-teal: #258f8a;
    --hb-spectral-slate: #2e3842;
    --hb-spectral-purple: #434775;
    --hb-spectral-ink: #1d242a;
    --hb-section-surface-a: var(--hb-spectral-slate);
    --hb-section-surface-b: var(--hb-spectral-purple);
    --hb-card-surface: #253039;
    --hb-card-surface-deep: var(--hb-spectral-ink);
    --hb-section-border: rgba(33, 178, 166, 0.16);
    --hb-section-wash-cyan: rgba(37, 143, 138, 0.05);
    --hb-section-wash-purple: rgba(67, 71, 117, 0.1);
    --hb-section-pattern-line: rgba(255, 255, 255, 0.035);
    --hb-section-pattern-accent: rgba(126, 230, 222, 0.055);
    --hb-ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --hb-motion-fast: 0.3s;
    --hb-motion-base: 0.75s;
    --hb-motion-slow: 1.1s;
    --hb-motion-hero-line: 0.85s;
    --hb-space-4: 4px;
    --hb-space-8: 8px;
    --hb-space-10: 10px;
    --hb-space-12: 12px;
    --hb-space-14: 14px;
    --hb-space-16: 16px;
    --hb-space-18: 18px;
    --hb-space-20: 20px;
    --hb-space-22: 22px;
    --hb-space-24: 24px;
    --hb-space-28: 28px;
    --hb-space-30: 30px;
    --hb-space-32: 32px;
    --hb-space-40: 40px;
    --hb-space-48: 48px;
    --hb-space-56: 56px;
    --hb-space-64: 64px;
    --hb-space-72: 72px;
    --hb-space-80: 80px;
    --hb-space-96: 96px;
    --hb-font-12: 12px;
    --hb-font-14: 14px;
    --hb-font-16: 16px;
    --hb-font-20: 20px;
    --hb-font-24: 24px;
    --hb-font-32: 32px;
    --hb-font-40: 40px;
    --hb-font-48: 48px;
    --hb-font-60: 60px;
    --hb-line-16: 16px;
    --hb-line-20: 20px;
    --hb-line-24: 24px;
    --hb-line-32: 32px;
    --hb-line-40: 40px;
    --hb-line-48: 48px;
    --hb-line-56: 56px;
    --hb-line-64: 64px;
    --hb-radius-4: 4px;
    --hb-radius-8: 8px;
    --hb-radius-12: 12px;
    --hb-media-radius: var(--hb-radius-8);
    --hb-media-frame-padding: var(--hb-space-16);
    --hb-media-thumb-padding: var(--hb-space-8);
    --hb-media-thumb-height: 128px;
    --hb-control-40: 40px;
    --hb-control-48: 48px;
    --hb-control-56: 56px;
    --hb-site-max: 1696px;
}

html {
    font-size: 16px;
}

body,
input,
select,
textarea {
    font-size: var(--hb-font-16);
}

@media screen and (max-width: 1680px) {
    body,
    input,
    select,
    textarea {
        font-size: var(--hb-font-16);
    }
}

@media screen and (max-width: 1280px) {
    body,
    input,
    select,
    textarea {
        font-size: var(--hb-font-16);
    }
}

@media screen and (max-width: 736px) {
    body,
    input,
    select,
    textarea {
        font-size: var(--hb-font-16);
    }
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: hb-page-out 0.35s ease both;
}

::view-transition-new(root) {
    animation: hb-page-in 0.7s var(--hb-ease-smooth) both;
}

@keyframes hb-page-out {
    to {
        opacity: 0;
    }
}

@keyframes hb-page-in {
    from {
        opacity: 0;
    }
}

@keyframes hb-hero-title-in {
    from {
        opacity: 0;
        transform: translateY(1rem) scale(0.97);
    }

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

@keyframes hb-hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }

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

@keyframes hb-offer-card-in {
    from {
        opacity: 0;
        transform: translateY(var(--hb-space-24)) scale(0.98);
    }

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

@keyframes hb-hero-mosaic-in {
    from {
        opacity: 0;
        transform: rotate(-3deg) scale(1.14);
    }

    to {
        opacity: 0.58;
        transform: rotate(-3deg) scale(1.08);
    }
}

:focus-visible {
    outline: 2px solid #7ee6de;
    outline-offset: 4px;
}

body p {
    font-size: 0.9em;
}

#header .site-brand {
    display: flex;
    align-items: center;
}

#header .site-brand a {
    align-items: center;
    display: flex;
}

#header .site-brand img {
    display: block;
    height: auto;
    max-height: 1.65rem;
    width: auto;
}

#header .site-brand__text {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

#header.alt .site-brand {
    opacity: 1;
    pointer-events: auto;
}

.homepage-section-nav {
    align-items: center;
    background: rgba(8, 13, 24, .82);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(126, 230, 222, .12);
    box-shadow: 0 8px 22px rgba(2, 5, 13, .18);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    height: 3.75rem;
    overflow: hidden;
    padding: 0 clamp(1rem, 2vw, 2rem);
    position: sticky;
    top: 0;
    z-index: 10000;
}

.homepage-section-nav__brand {
    align-items: center;
    border-radius: 0.25rem;
    display: flex;
    flex: 0 0 auto;
    justify-self: start;
    padding: 0 !important;
    transition: opacity var(--hb-motion-fast) var(--hb-ease-smooth), transform var(--hb-motion-fast) var(--hb-ease-smooth);
}

.homepage-section-nav__brand:hover,
.homepage-section-nav__brand:focus-visible {
    opacity: .9;
    transform: translateY(-1px);
}

.homepage-section-nav__brand:focus,
.homepage-section-nav__brand:focus-visible,
.homepage-section-nav__brand img:focus,
.homepage-section-nav__brand img:focus-visible {
    outline: 0;
}

.homepage-section-nav__brand,
.homepage-section-nav__brand img {
    border-bottom: 0;
}

.homepage-section-nav__brand:focus-visible img {
    filter: drop-shadow(0 0 0.35rem rgba(126, 230, 222, 0.75));
}

.homepage-section-nav__brand img {
    display: block;
    height: auto;
    max-height: 1.65rem;
    width: auto;
}

.homepage-section-nav__brand span {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.homepage-section-nav__links {
    align-items: center;
    display: flex;
    gap: clamp(1.1rem, 2.2vw, 2.1rem);
    justify-content: center;
    justify-self: center;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
}

.homepage-section-nav__links::-webkit-scrollbar { display: none; }

.homepage-section-nav__toggle {
    align-items: center;
    appearance: none;
    background: rgba(255, 255, 255, .04);
    border: 0;
    border-radius: var(--hb-radius-8);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
    display: none;
    flex-direction: column;
    gap: .28rem;
    height: 2.75rem;
    justify-content: center;
    justify-self: end;
    margin: 0;
    padding: .65rem;
    width: 2.75rem;
}

.homepage-section-nav__toggle span {
    background: rgba(255, 255, 255, .82);
    display: block;
    height: 2px;
    transition: transform var(--hb-motion-fast) var(--hb-ease-smooth), opacity var(--hb-motion-fast) ease;
    width: 1.3rem;
}

.homepage-section-nav__links a {
    border: 0;
    color: rgba(255, 255, 255, .78);
    flex: 0 0 auto;
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .12em;
    padding: 1rem 0;
    position: relative;
    text-transform: uppercase;
    transition: color var(--hb-motion-fast) var(--hb-ease-smooth), transform var(--hb-motion-fast) var(--hb-ease-smooth);
}

.homepage-section-nav__links a::after {
    background: #7ee6de;
    bottom: .55rem;
    content: '';
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    transform: scaleX(.35);
    transform-origin: center;
    transition: opacity 0.45s var(--hb-ease-smooth), transform 0.45s var(--hb-ease-smooth);
    width: 100%;
}

.homepage-section-nav a:hover,
.homepage-section-nav a:focus-visible {
    color: #7ee6de;
}

.homepage-section-nav__links a:hover,
.homepage-section-nav__links a:focus-visible {
    transform: translateY(-1px);
}

.homepage-section-nav__links a:hover::after,
.homepage-section-nav__links a:focus-visible::after {
    opacity: .8;
    transform: scaleX(1);
}

body.landing #banner,
body.landing #home,
body.landing #offer,
body.landing #featured,
body.landing #products,
body.landing #services,
body.landing #testimonials,
body.landing #why-hyperbyte,
body.landing #support { scroll-margin-top: 4.5rem; }

body.landing #offer {
    scroll-margin-top: 0;
}

body.landing #page-wrapper,
body.landing #banner,
body.landing .wrapper.style4,
#main > header {
    background-attachment: scroll !important;
}

.section-anchor {
    display: block;
    height: 0;
    overflow: hidden;
    position: relative;
    top: -4.5rem;
    visibility: hidden;
}

.hyperbyte-banner {
    background:
        radial-gradient(circle at 50% 42%, rgba(42, 67, 91, 0.18), transparent 44%),
        #0b1120;
    isolation: isolate;
    overflow: hidden;
}

.hyperbyte-banner::before {
    background:
        radial-gradient(circle at 50% 44%, rgba(8, 13, 27, 0.26), rgba(8, 13, 27, 0.78) 62%),
        linear-gradient(90deg, rgba(8, 13, 27, 0.88) 0%, rgba(8, 13, 27, 0.58) 48%, rgba(8, 13, 27, 0.84) 100%),
        linear-gradient(180deg, rgba(8, 13, 27, 0.26), rgba(8, 13, 27, 0.76));
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.hero-product-mosaic {
    display: grid;
    gap: clamp(0.7rem, 1.2vw, 1.3rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    inset: -5% -3%;
    opacity: 0.58;
    pointer-events: none;
    position: absolute;
    transform: rotate(-3deg) scale(1.08);
    z-index: 0;
}

.hero-product-mosaic__item {
    aspect-ratio: 3 / 2;
    border: solid 1px rgba(255, 255, 255, 0.12);
    border-radius: 0.9rem;
    box-shadow: 0 1.4rem 3rem rgba(2, 5, 14, 0.38);
    margin: 0;
    min-height: 0;
    overflow: hidden;
    transform: translateY(-8%);
}

.hero-product-mosaic__item:nth-child(even) {
    transform: translateY(12%);
}

.hero-product-mosaic__item img {
    display: block;
    filter: saturate(0.82) contrast(1.02);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hyperbyte-banner .inner {
    align-self: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: 52em;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.hyperbyte-banner h1,
.hyperbyte-banner p,
.hyperbyte-banner .actions.special {
    margin-left: auto;
    margin-right: auto;
}

.hyperbyte-banner h1 {
    display: inline-block;
    font-size: clamp(2em, 3vw, 3.05em) !important;
    line-height: 1.08;
    margin-bottom: 0.62em;
    max-width: 100%;
    padding: 0.32em 0.82em;
    position: relative;
    white-space: nowrap;
    z-index: 1;
}

.hyperbyte-banner h1::before,
.hyperbyte-banner h1::after {
    background: #fff;
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    transition: width 0.85s ease 0.25s;
    width: 100%;
}

.hyperbyte-banner h1::before {
    left: 0;
    top: 0;
}

.hyperbyte-banner h1::after {
    bottom: 0;
    right: 0;
}

.hyperbyte-banner .hero-title-inline {
    align-items: flex-end;
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0.45em;
}

.hyperbyte-banner .hero-title-prefix-inline {
    display: inline-block;
    font-size: 0.48em;
    letter-spacing: 0.24em;
    line-height: 1;
    opacity: 0.85;
}

.hyperbyte-banner .hero-title-main-inline {
    display: inline-block;
    letter-spacing: 0.14em;
    line-height: 1;
}

.hyperbyte-banner p {
    max-width: 48rem;
}

.hyperbyte-banner .hero-company-kicker {
    color: #7ee6de;
    font-size: 0.78em;
    font-weight: 400;
    letter-spacing: 0.18em;
    margin-bottom: 0.95em;
}

.hyperbyte-banner .hero-company-copy {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.96em;
    font-weight: 400;
    letter-spacing: 0.045em !important;
    line-height: 1.55;
    margin-bottom: 1.95em;
    margin-top: 0;
    text-transform: none !important;
}

.hyperbyte-banner [data-hero-subtitle] {
    display: inline-block;
    font-weight: 700;
}

.hyperbyte-banner [data-hero-description] {
    display: inline-block;
}

.hyperbyte-banner .actions.special {
    gap: 1rem;
    justify-content: center;
}

.hyperbyte-banner .actions.special li {
    padding: 0;
}

.hyperbyte-banner .actions.special .button {
    align-items: center;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    min-width: 17rem;
    width: 17rem;
}

.hyperbyte-banner .actions.special .button:not(.primary) {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
    color: rgba(255, 255, 255, 0.82) !important;
}

.hero-scroll-cue {
    align-items: center;
    border: 0;
    bottom: clamp(8rem, 14vh, 10rem);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 1.28rem;
    font-weight: 600;
    gap: 0.8rem;
    left: 50%;
    letter-spacing: 0.225em;
    margin-left: -9rem;
    opacity: 0;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(1.25rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    width: 18rem;
    z-index: 2;
}

.hero-scroll-cue::after {
    background: url("images/arrow.svg") center / contain no-repeat;
    content: '';
    display: block;
    height: 1.5rem;
    width: 1.5rem;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
    color: #ffffff;
    opacity: 0.72;
    transform: translateY(0.25rem);
}

.offer-section {
    align-items: flex-start;
    background:
        #0b1120;
    display: flex;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.offer-section::before {
    background:
        radial-gradient(circle at 50% 44%, rgba(8, 13, 27, 0.22), rgba(8, 13, 27, 0.76) 62%),
        linear-gradient(90deg, rgba(8, 13, 27, 0.9) 0%, rgba(8, 13, 27, 0.64) 48%, rgba(8, 13, 27, 0.88) 100%),
        linear-gradient(180deg, rgba(8, 13, 27, 0.2), rgba(8, 13, 27, 0.82));
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.offer-product-mosaic {
    opacity: 0.42;
    transform: rotate(3deg) scale(1.08);
}

.offer-scroll-cue {
    bottom: var(--hb-space-72);
}

.offer-section .inner {
    margin: 0 auto;
    max-width: min(var(--hb-site-max), calc(100vw - 48px));
    padding: clamp(calc(var(--hb-space-96) + var(--hb-space-64)), 22vh, calc(var(--hb-space-96) + var(--hb-space-96) + var(--hb-space-32))) 0 0;
    position: relative;
    width: 100%;
    z-index: 2;
}

.offer-section__kicker {
    color: #7ee6de;
    font-size: var(--hb-font-16);
    font-weight: 400;
    letter-spacing: var(--hb-space-4);
    line-height: var(--hb-line-16);
    margin-bottom: var(--hb-space-16);
    text-transform: uppercase;
}

.offer-section h2 {
    border: 0;
    color: #ffffff;
    display: inline-block;
    font-size: var(--hb-font-60);
    letter-spacing: var(--hb-space-4);
    line-height: var(--hb-line-64);
    margin: 0 auto var(--hb-space-32);
    max-width: 100%;
    padding: var(--hb-space-16) var(--hb-space-32);
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}

.offer-section h2::before,
.offer-section h2::after {
    background: #ffffff;
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    transition: width 0.85s ease 0.25s;
    width: 100%;
}

.offer-section h2::before {
    left: 0;
    top: 0;
}

.offer-section h2::after {
    bottom: 0;
    right: 0;
}

.offer-section__copy {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.96em;
    font-weight: 400;
    letter-spacing: 0.075em !important;
    line-height: var(--hb-line-24);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    max-width: 760px;
}

.offer-grid {
    display: grid;
    gap: var(--hb-space-12) var(--hb-space-16);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: var(--hb-space-80);
    text-align: left;
}

.offer-card {
    backdrop-filter: none;
    background: rgba(20, 31, 48, 1);
    border: solid 1px rgba(126, 230, 222, 0.2);
    border-radius: var(--hb-radius-8);
    box-shadow: 0 12px 28px rgba(5, 8, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    align-items: start;
    column-gap: var(--hb-space-16);
    display: grid;
    grid-template-columns: var(--hb-space-32) minmax(0, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    min-height: 128px;
    overflow: hidden;
    padding: var(--hb-space-20);
    position: relative;
    transition:
        background 0.45s var(--hb-ease-smooth),
        border-color 0.45s var(--hb-ease-smooth),
        box-shadow 0.25s var(--hb-ease-smooth),
        transform 0.25s var(--hb-ease-smooth);
}

.offer-card--wide {
    grid-column: 2 / span 2;
    height: auto;
    min-height: 128px;
}

.offer-card::before {
    background: #7ee6de;
    bottom: 0;
    content: '';
    height: 2px;
    left: var(--hb-space-16);
    opacity: 0.65;
    position: absolute;
    right: var(--hb-space-16);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--hb-motion-base) var(--hb-ease-smooth);
}

.offer-card:hover,
.offer-card:focus-within {
    background: rgba(26, 39, 59, 1);
    border-color: rgba(126, 230, 222, 0.36);
    box-shadow: 0 14px 34px rgba(5, 8, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.offer-card:hover::before,
.offer-card:focus-within::before {
    transform: scaleX(1);
}

.offer-card .icon {
    align-items: center;
    background: rgba(126, 230, 222, 0.12);
    border: solid 1px rgba(126, 230, 222, 0.24);
    border-radius: var(--hb-radius-8);
    color: #7ee6de;
    display: inline-flex;
    font-size: var(--hb-font-14);
    height: var(--hb-space-32);
    justify-content: center;
    margin-bottom: 0;
    transition:
        background var(--hb-motion-fast) var(--hb-ease-smooth),
        border-color var(--hb-motion-fast) var(--hb-ease-smooth),
        color var(--hb-motion-fast) var(--hb-ease-smooth),
        transform var(--hb-motion-fast) var(--hb-ease-smooth);
    width: var(--hb-space-32);
}

.offer-card:hover .icon,
.offer-card:focus-within .icon {
    background: rgba(126, 230, 222, 0.18);
    border-color: rgba(126, 230, 222, 0.42);
    color: #ffffff;
    transform: translateY(-2px);
}

.offer-card h3 {
    color: #ffffff;
    display: block;
    font-size: var(--hb-font-16);
    letter-spacing: 0.12em;
    line-height: var(--hb-line-20);
    margin: 0 0 var(--hb-space-12);
    overflow: visible;
    text-transform: uppercase;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.74) !important;
    display: block;
    font-size: var(--hb-font-14);
    grid-column: 1 / -1;
    line-height: var(--hb-line-20);
    margin: 0;
    overflow: visible;
    text-transform: none;
}

body.is-preload .offer-section .hero-product-mosaic,
body.is-preload .offer-section__kicker,
body.is-preload .offer-section h2,
body.is-preload .offer-section__copy,
body.is-preload .offer-card {
    opacity: 0;
    transform: translateY(1.25rem);
}

body.is-preload .offer-section h2::before,
body.is-preload .offer-section h2::after {
    width: 0;
}

body:not(.is-preload) .offer-section .hero-product-mosaic {
    animation: hb-hero-mosaic-in 1.8s var(--hb-ease-smooth) 0.15s both;
}

body:not(.is-preload) .offer-section h2 {
    animation: hb-hero-title-in 1.35s var(--hb-ease-smooth) 0.45s both;
}

body:not(.is-preload) .offer-section__kicker,
body:not(.is-preload) .offer-section__copy {
    animation: hb-hero-fade-up 1.1s var(--hb-ease-smooth) both;
}

body:not(.is-preload) .offer-card {
    animation: hb-offer-card-in 0.72s var(--hb-ease-smooth) both;
}

body:not(.is-preload) .offer-section__kicker { animation-delay: 0.2s; }
body:not(.is-preload) .offer-section__copy { animation-delay: 0.95s; }
body:not(.is-preload) .offer-card:nth-child(1) { animation-delay: 1.12s; }
body:not(.is-preload) .offer-card:nth-child(2) { animation-delay: 1.24s; }
body:not(.is-preload) .offer-card:nth-child(3) { animation-delay: 1.36s; }
body:not(.is-preload) .offer-card:nth-child(4) { animation-delay: 1.48s; }
body:not(.is-preload) .offer-card:nth-child(5) { animation-delay: 1.6s; }
body:not(.is-preload) .offer-card:nth-child(6) { animation-delay: 1.72s; }
body:not(.is-preload) .offer-card:nth-child(7) { animation-delay: 1.84s; }
body:not(.is-preload) .offer-card:nth-child(8) { animation-delay: 1.96s; }
body:not(.is-preload) .offer-card:nth-child(9) { animation-delay: 2.08s; }

body.is-preload .hyperbyte-banner h1 {
    opacity: 0;
    transform: translateY(1rem) scale(0.97);
}

body.is-preload .hyperbyte-banner h1::before,
body.is-preload .hyperbyte-banner h1::after {
    width: 0;
}

body.is-preload .hyperbyte-banner .hero-company-kicker,
body.is-preload .hyperbyte-banner .hero-company-copy,
body.is-preload .hyperbyte-banner .actions.special {
    opacity: 0;
    transform: translateY(1.25rem);
}

body.is-preload .hyperbyte-banner .hero-product-mosaic {
    opacity: 0;
    transform: rotate(-3deg) scale(1.14);
}

body:not(.is-preload) #banner.hyperbyte-banner h1 {
    animation: hb-hero-title-in 1.6s var(--hb-ease-smooth) 0.05s both;
}

body:not(.is-preload) .hyperbyte-banner .hero-company-kicker {
    animation: hb-hero-fade-up 1.1s var(--hb-ease-smooth) 0.85s both;
}

body:not(.is-preload) .hyperbyte-banner .hero-company-copy {
    animation: hb-hero-fade-up 1.2s var(--hb-ease-smooth) 1.15s both;
}

body:not(.is-preload) .hyperbyte-banner .actions.special {
    animation: hb-hero-fade-up 1.2s var(--hb-ease-smooth) 1.5s both;
}

body:not(.is-preload) .hyperbyte-banner .hero-product-mosaic {
    animation: hb-hero-mosaic-in 1.8s var(--hb-ease-smooth) 2.15s both;
}

body:not(.is-preload) .hero-scroll-cue {
    animation: hb-hero-fade-up 0.75s var(--hb-ease-smooth) 2.5s both;
}

@media screen and (max-width: 980px) {
    .hero-product-mosaic {
        gap: 0.75rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        inset: -5rem -6rem;
        opacity: 0.54;
        transform: rotate(-3deg) scale(1.04);
    }

    .hyperbyte-banner::before {
        background:
            linear-gradient(90deg, rgba(8, 13, 27, 0.72), rgba(8, 13, 27, 0.55), rgba(8, 13, 27, 0.72)),
            linear-gradient(180deg, rgba(8, 13, 27, 0.38), rgba(8, 13, 27, 0.68));
    }

    .offer-section {
        display: block;
        height: auto;
        min-height: auto;
        overflow: hidden;
    }

    .offer-section .inner {
        padding-bottom: 8rem;
        padding-top: 6rem;
        transform: none;
    }

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

    .offer-card--wide {
        grid-column: 1 / span 2;
    }
}

@media screen and (max-height: 800px) and (min-width: 981px) {
    .offer-section {
        display: block;
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
        overflow: hidden;
    }

    .offer-section .inner {
        padding-bottom: 0;
        padding-top: var(--hb-space-96);
    }

    .offer-grid {
        gap: var(--hb-space-12) var(--hb-space-16);
        margin-top: var(--hb-space-56);
    }

    .offer-card,
    .offer-card--wide {
        height: auto;
        min-height: 128px;
        padding: var(--hb-space-16);
    }

    .offer-card {
        grid-template-columns: var(--hb-space-32) minmax(0, 1fr);
    }

    .offer-card .icon {
        font-size: var(--hb-font-14);
        height: var(--hb-space-32);
        width: var(--hb-space-32);
    }

    .offer-card h3 {
        font-size: var(--hb-font-16);
        line-height: var(--hb-line-20);
        margin-bottom: var(--hb-space-8);
    }

    .offer-card p,
    .offer-card--wide p {
        font-size: var(--hb-font-14);
        line-height: var(--hb-line-20);
    }

    .offer-scroll-cue {
        bottom: auto;
        left: auto;
        margin: var(--hb-space-64) auto var(--hb-space-64);
        position: relative;
        transform: none;
    }
}

@media screen and (max-width: 1100px) {
    .homepage-section-nav {
        gap: .75rem;
        grid-template-columns: minmax(0, 1fr) auto;
        height: 3.5rem;
        overflow: visible;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .homepage-section-nav__brand img { max-height: 1.4rem; }

    .homepage-section-nav__links {
        align-items: stretch;
        background: rgba(9, 15, 28, .98);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, .28);
        display: flex;
        flex-direction: column;
        gap: 0;
        inset: 100% 0 auto;
        justify-self: stretch;
        opacity: 0;
        overflow: hidden;
        padding: .6rem 1rem 1rem;
        pointer-events: none;
        position: absolute;
        transform: translateY(-.6rem);
        transition: opacity .35s var(--hb-ease-smooth), transform .35s var(--hb-ease-smooth), visibility .35s;
        visibility: hidden;
        width: 100%;
    }

    .homepage-section-nav__links a {
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        padding: .9rem .25rem;
        text-align: center;
    }

    .homepage-section-nav__links a::after {
        bottom: .6rem;
        left: 50%;
        margin-left: -20px;
        width: 40px;
    }

    .homepage-section-nav__links a:last-child { border-bottom: 0; }
    .homepage-section-nav__toggle { display: flex; }

    .homepage-section-nav.is-menu-open .homepage-section-nav__links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .homepage-section-nav.is-menu-open .homepage-section-nav__toggle span:nth-child(1) {
        transform: translateY(.38rem) rotate(45deg);
    }

    .homepage-section-nav.is-menu-open .homepage-section-nav__toggle span:nth-child(2) { opacity: 0; }

    .homepage-section-nav.is-menu-open .homepage-section-nav__toggle span:nth-child(3) {
        transform: translateY(-.38rem) rotate(-45deg);
    }
}

@media screen and (max-width: 736px) {
    #header .site-brand img {
        max-height: 1.4rem;
        max-width: calc(100vw - 7rem);
    }

    #banner.hyperbyte-banner {
        min-height: calc(100svh - 3.5rem);
    }

    .hero-product-mosaic {
        gap: 0.65rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        inset: -2rem -8rem;
        opacity: 0.42;
        transform: rotate(-3deg) scale(1.04);
    }

    .hyperbyte-banner::before {
        background:
            rgba(8, 13, 27, 0.78);
    }

    .hyperbyte-banner .inner {
        max-width: 34rem;
    }

    .hyperbyte-banner h1 {
        font-size: clamp(1.7em, 7vw, 2.25em) !important;
        white-space: normal;
    }

    .hyperbyte-banner .hero-title-main-inline {
        letter-spacing: 0.1em;
    }

    .hyperbyte-banner .hero-company-kicker {
        line-height: 1.6;
    }

    .hyperbyte-banner .actions.special {
        align-items: stretch;
        flex-direction: column;
        gap: 0.75rem;
        width: min(100%, 22rem);
    }

    .hyperbyte-banner .actions.special li {
        padding: 0;
        width: 100%;
    }

    .hyperbyte-banner .actions.special .button {
        box-sizing: border-box;
        margin: 0;
        width: 100%;
    }

    .hero-scroll-cue {
        bottom: 4rem;
    }

    .offer-section {
        height: auto;
        min-height: auto;
        overflow: visible;
        text-align: left;
    }

    .offer-section::before {
        background:
            rgba(8, 13, 27, 0.78);
    }

    .offer-section .inner {
        max-width: calc(100vw - 2rem);
        padding: 5.5rem 0 7rem;
    }

    .offer-section h2 {
        font-size: clamp(1.7rem, 7vw, 2.25rem);
        letter-spacing: 0.1em;
        white-space: normal;
    }

    .offer-section__copy {
        margin-left: 0;
        margin-right: 0;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        margin-top: var(--hb-space-24);
    }

    .offer-card {
        height: auto;
        min-height: 176px;
    }

    .offer-card--wide {
        grid-column: auto;
    }

    .offer-scroll-cue {
        bottom: auto;
        left: auto;
        margin: 0 auto var(--hb-space-64);
        position: relative;
    }
}

.hero-pagination-wrap {
    padding: 2em 0 1.5em 0;
}

.hero-pagination {
    align-items: center;
    display: flex;
    gap: 1em;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
}

.hero-pagination-dots {
    align-items: center;
    display: flex;
    gap: 1em;
    justify-content: center;
}

.hero-pagination-arrow,
.hero-pagination-dot {
    appearance: none;
    background: transparent;
    border: solid 2px rgba(255, 255, 255, 0.35);
    box-shadow: none;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.hero-pagination-arrow {
    align-items: center;
    border-radius: 999px;
    height: 3.25em;
    width: 3.25em;
}

.hero-pagination-dot {
    border-radius: 999px;
    height: 0.85em;
    width: 0.85em;
}

.hero-pagination-dot.is-active {
    background: #ffffff;
    border-color: #ffffff;
    width: 2.25em;
}

.company-story-section .inner {
    max-width: 60em;
}

.company-story-section {
    background: #2b2f4a;
}

.company-story-section,
.company-story-section h2,
.company-story-section h3,
.company-story-section p,
.company-story-section strong,
.company-story-section b {
    color: #ffffff;
}

.company-story-header {
    margin-bottom: 2.5em;
}

.company-story-shell {
    margin: 0 auto;
    max-width: 52em;
    padding: 0;
}

.company-story-panel {
    align-items: center;
    display: flex;
    gap: 2em;
    justify-content: center;
    margin: 0 auto 1.75em auto;
    max-width: 100%;
    min-height: 11.5em;
}

.company-story-panel .icon.major {
    border: solid 1px rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #7ee6de;
    flex: 0 0 auto;
    font-size: 1.9em;
    height: 4.4em;
    line-height: 4.4em;
    transition: opacity var(--hb-motion-base) var(--hb-ease-smooth);
    transform: rotate(45deg);
    will-change: opacity;
    width: 4.4em;
}

.company-story-panel .icon.major:before {
    display: inline-block;
    transform: rotate(-45deg);
}

.company-story-panel .icon.major.is-faded {
    opacity: 0;
}

.company-story-copy {
    flex: 1 1 auto;
    text-align: left;
}

.company-story-copy .section-eyebrow {
    color: var(--hb-accent) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin: 0 0 0.8rem;
    text-transform: uppercase;
    transition: opacity var(--hb-motion-base) var(--hb-ease-smooth), transform var(--hb-motion-base) var(--hb-ease-smooth);
}

.company-story-title {
    font-size: 1.5em;
    margin-bottom: 0.55em;
    text-align: left;
    transition: opacity var(--hb-motion-base) var(--hb-ease-smooth), transform var(--hb-motion-base) var(--hb-ease-smooth);
}

.company-story-eyebrow.is-exit-up,
.company-story-eyebrow.is-enter-from-top,
.company-story-title.is-exit-up,
.company-story-title.is-enter-from-top {
    opacity: 0;
}

.company-story-eyebrow.is-exit-up,
.company-story-title.is-exit-up {
    transform: translateY(-1.5rem);
}

.company-story-eyebrow.is-enter-from-top,
.company-story-title.is-enter-from-top {
    transform: translateY(-1.8rem);
}

.company-story-copy p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1em;
    line-height: 1.75;
    margin-bottom: 0;
}

.company-story-body {
    transition: opacity var(--hb-motion-slow) var(--hb-ease-smooth), transform var(--hb-motion-slow) var(--hb-ease-smooth);
}

.company-story-body.is-exit-down,
.company-story-body.is-enter-from-bottom {
    opacity: 0;
}

.company-story-body.is-exit-down {
    transform: translateY(1.4rem);
}

.company-story-body.is-enter-from-bottom {
    transform: translateY(1.6rem);
}

.company-story-panel.is-changing .icon.major {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .company-story-eyebrow,
    .company-story-title,
    .company-story-body {
        transition: none;
    }

    .company-story-eyebrow.is-exit-up,
    .company-story-eyebrow.is-enter-from-top,
    .company-story-title.is-exit-up,
    .company-story-title.is-enter-from-top,
    .company-story-body.is-exit-down,
    .company-story-body.is-enter-from-bottom {
        transform: none;
    }
}


.company-story-pagination {
    align-items: center;
    display: flex;
    gap: 0.85em;
    justify-content: center;
}

.company-story-arrow,
.company-story-dot {
    appearance: none;
    background: transparent;
    border: solid 1px rgba(255, 255, 255, 0.12);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.company-story-arrow {
    align-items: center;
    border-radius: 999px;
    height: 2.55em;
    transition: border-color var(--hb-motion-fast) var(--hb-ease-smooth), background-color var(--hb-motion-fast) var(--hb-ease-smooth), color var(--hb-motion-fast) var(--hb-ease-smooth), opacity var(--hb-motion-fast) var(--hb-ease-smooth);
    width: 2.55em;
}

.company-story-dot {
    border-radius: 999px;
    opacity: 0.85;
    transition: background-color var(--hb-motion-fast) var(--hb-ease-smooth), border-color var(--hb-motion-fast) var(--hb-ease-smooth), width var(--hb-motion-fast) var(--hb-ease-smooth), opacity var(--hb-motion-fast) var(--hb-ease-smooth);
    height: 0.72em;
    width: 0.72em;
}

.company-story-dot.is-active {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.34);
    opacity: 1;
    width: 1.35em;
}

.company-story-arrow:hover,
.company-story-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.72);
    opacity: 1;
}

.company-story-dot:hover,
.company-story-dot:focus-visible {
    border-color: rgba(255, 255, 255, 0.24);
    opacity: 1;
}

.studio-focus-section {
    background:
        radial-gradient(circle at top, rgba(126, 230, 222, 0.1), transparent 34%),
        linear-gradient(180deg, #243049 0%, #232b45 52%, #222943 100%);
}

.studio-focus-section,
.studio-focus-section h2,
.studio-focus-section h3 {
    color: #ffffff;
}

.studio-focus-section p,
.studio-focus-section header.major p,
.studio-focus-section header p {
    color: rgba(255, 255, 255, 0.74);
}

.studio-focus-section header.major h2 {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.studio-focus-section .inner {
    max-width: min(94em, calc(100vw - 4em));
    width: 100%;
}

.studio-focus-section .button {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
}

.studio-focus-section .button:hover,
.studio-focus-section .button:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(126, 230, 222, 0.6);
    color: #ffffff !important;
}

.studio-focus-section .button.primary {
    background: #e8483a;
    border-color: #e8483a;
    color: #ffffff !important;
}

.studio-focus-section .button.primary:hover,
.studio-focus-section .button.primary:focus-visible {
    background: #ff5a4d;
    border-color: #ff5a4d;
}

/* Isolated featured-product carousel. */
.featured-carousel {
    box-sizing: border-box;
    height: auto;
    min-height: 42rem;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0 clamp(1.25rem, 2.5vh, 2rem);
}

.featured-carousel .inner {
    display: grid;
    grid-template-rows: auto auto auto;
    height: auto;
    max-width: min(106em, calc(100vw - 3em));
}

.featured-carousel__heading {
    margin: 0 auto 1.4em;
    max-width: min(106em, calc(100vw - 3rem));
    text-align: left;
    width: 100%;
}

.featured-carousel__heading > div {
    width: 100%;
}

.featured-carousel__heading h2 {
    border: 0;
    font-size: 24px;
    line-height: 1;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.featured-carousel__eyebrow {
    color: var(--hb-accent) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin: 0 0 0.8rem;
    text-transform: uppercase;
}

.featured-carousel__stage {
    height: auto;
    margin: 0 auto;
    max-width: min(106em, calc(100vw - 3rem));
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.featured-carousel__stage.is-animating .featured-product.is-transitioning-in {
    inset: 0;
    position: absolute;
}

.featured-product[hidden] {
    display: none;
}

.featured-product {
    --featured-card-gutter: clamp(1.5em, 2.2vw, 2.25em);
    backdrop-filter: none;
    background: rgba(10, 16, 30, 0.24);
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 1.1em;
    box-shadow:
        0 14px 34px rgba(10, 14, 21, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(28em, 1fr);
    grid-template-rows: 1fr;
    height: auto;
    overflow: hidden;
    transform-origin: center;
}

.featured-product__gallery {
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 0.9em;
    min-height: 0;
    min-width: 0;
    margin: var(--featured-card-gutter);
}

.featured-product__media-frame,
.featured-product__thumbnail-frame {
    background: rgba(255, 255, 255, 0.045);
    border: solid 1px rgba(255, 255, 255, 0.12);
    border-radius: 1em;
    box-sizing: border-box;
    box-shadow: 0 20px 44px rgba(2, 5, 13, 0.34);
    max-width: 100%;
    min-width: 0;
    padding: clamp(0.55em, 0.9vw, 0.8em);
    width: 100%;
}

.featured-product__media-frame {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    min-height: 0;
    padding: clamp(0.55em, 0.9vw, 0.8em);
}

.featured-product__thumbnail-frame {
    align-items: center;
    display: flex;
    flex: 0 0 clamp(6.5rem, 17%, 8.5rem);
    min-height: 0;
}

.featured-product__media {
    aspect-ratio: 3 / 2;
    background: #070b14;
    border: 0;
    display: block;
    max-width: 100%;
    min-height: 0;
    border-radius: 1em;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.featured-product__media::after {
    background: linear-gradient(180deg, transparent 55%, rgba(3, 6, 14, 0.45));
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.featured-product__media img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.featured-product__media-label {
    bottom: 1.4em;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72em;
    font-weight: 700;
    left: 1.5em;
    letter-spacing: 0.16em;
    position: absolute;
    text-transform: uppercase;
    z-index: 1;
}

.featured-product__gallery-arrow {
    align-items: center;
    appearance: none;
    background: rgba(6, 10, 20, 0.68);
    border: solid 1px rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    height: 2.75em;
    justify-content: center;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, border-color 0.25s ease, opacity 0.3s ease, transform 0.25s ease;
    width: 2.75em;
    z-index: 2;
}

.featured-product__media:hover .featured-product__gallery-arrow,
.featured-product__gallery-arrow:focus-visible {
    opacity: 1;
    pointer-events: auto;
}

.featured-product__gallery-arrow.is-previous {
    left: 1em;
}

.featured-product__gallery-arrow.is-next {
    right: 1em;
}

.featured-product__gallery-arrow:hover,
.featured-product__gallery-arrow:focus-visible {
    background: rgba(6, 10, 20, 0.92);
    border-color: rgba(126, 230, 222, 0.75);
    transform: translateY(-50%) scale(1.06);
}

.featured-product__thumbnails {
    align-items: center;
    display: flex;
    gap: 0.8em;
    height: 100%;
    margin: 0;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.1em 0 0.7em;
    scrollbar-color: rgba(126, 230, 222, 0.55) rgba(255, 255, 255, 0.06);
    scrollbar-gutter: stable;
    scrollbar-width: auto;
    width: 100%;
}

.featured-product__thumbnails::-webkit-scrollbar {
    height: 7px;
}

.featured-product__thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 999px;
}

.featured-product__thumbnails::-webkit-scrollbar-thumb {
    background: rgba(126, 230, 222, 0.65);
    border-radius: 999px;
}

.featured-product__thumbnails::-webkit-scrollbar-thumb:hover {
    background: #7ee6de;
}

.featured-product__thumbnail {
    aspect-ratio: 3 / 2;
    appearance: none;
    background: #070b14;
    border: solid 2px transparent;
    border-radius: 0.5em;
    box-shadow: none;
    cursor: pointer;
    flex: 0 0 auto;
    height: calc(100% - 0.8em);
    line-height: normal;
    max-height: 100%;
    max-width: none;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    white-space: normal;
    transition: border-color var(--hb-motion-fast) var(--hb-ease-smooth), opacity var(--hb-motion-fast) ease;
}

.featured-product__thumbnail img {
    background: #070b14;
    display: block;
    height: 100%;
    max-width: none;
    object-fit: contain;
    width: 100%;
}

.featured-product__thumbnail:not(.is-active) {
    opacity: 0.58;
}

.featured-product__thumbnail.is-active,
.featured-product__thumbnail:hover,
.featured-product__thumbnail:focus-visible {
    border-color: #7ee6de;
    opacity: 1;
}

.featured-product__body {
    border-left: solid 1px rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    min-height: 0;
    padding: var(--featured-card-gutter);
    text-align: left;
}

.featured-product__copy {
    width: 100%;
}

.featured-product__kicker {
    color: #7ee6de !important;
    font-size: 0.76em;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin: 0 0 1em;
    text-transform: uppercase;
}

.featured-product__body h3 {
    display: -webkit-box;
    font-size: clamp(1.65em, 2.15vw, 2.35em);
    letter-spacing: 0.08em;
    line-height: 1.08;
    margin: 0 0 0.4em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.featured-product__description {
    color: rgba(255, 255, 255, 0.72) !important;
    display: -webkit-box;
    font-size: 0.9em;
    line-height: 1.8;
    margin: 0;
    max-width: 36em;
    min-height: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.featured-product__actions {
    display: flex;
    gap: 0.85em;
    margin-top: var(--hb-space-48);
    padding-top: 1.25em;
}

.featured-product__actions .button,
.product-grid-content .actions .button {
    align-items: center;
    box-sizing: border-box;
    display: inline-flex;
    flex: 1 1 0;
    font-size: var(--hb-font-12);
    height: var(--hb-control-40);
    justify-content: center;
    line-height: var(--hb-line-16);
    margin: 0;
    max-width: none;
    min-width: 0;
    padding-left: var(--hb-space-16);
    padding-right: var(--hb-space-16);
    text-align: center;
    width: 100%;
}

.featured-product__actions .button:not(.primary),
.product-grid-content .actions .button:not(.primary) {
    background-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
    color: rgba(255, 255, 255, 0.82) !important;
}

.featured-product__actions .button.primary,
.product-grid-content .actions .button.primary {
    background-color: #e8483a;
    border-color: #e8483a;
}

.featured-product__actions .button:not(.primary):hover,
.product-grid-content .actions .button:not(.primary):hover {
    background-color: rgba(144, 144, 144, 0.25);
}

.featured-product__actions .button:not(.primary):active,
.product-grid-content .actions .button:not(.primary):active {
    background-color: rgba(144, 144, 144, 0.5);
}

.featured-carousel__footer {
    align-items: center;
    display: grid;
    gap: 1.5em;
    grid-template-columns: minmax(8em, 1fr) auto;
    margin: clamp(0.85em, 1.8vh, 1.35em) auto 0;
    max-width: min(106em, calc(100vw - 3rem));
    width: 100%;
}

@media screen and (min-width: 981px) {
    .featured-product__thumbnail-frame {
        flex-basis: clamp(6.5rem, 8vw, 8.5rem);
    }

    .featured-product__body {
        justify-content: flex-start;
    }

    .featured-product__actions {
        margin-top: auto;
    }
}

.featured-carousel__progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    height: 2px;
    overflow: hidden;
}

.featured-carousel__progress span {
    background: linear-gradient(90deg, #7ee6de, #e8483a);
    display: block;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
}

.featured-carousel__progress span.is-running {
    animation: featured-carousel-progress 7s linear forwards;
}

.featured-carousel.is-paused .featured-carousel__progress span {
    animation-play-state: paused;
}

.featured-carousel__controls {
    align-items: center;
    display: flex;
    gap: 0.8em;
}

.featured-carousel__arrow,
.featured-carousel__dot {
    appearance: none;
    background: transparent;
    border: solid 1px rgba(255, 255, 255, 0.14);
    box-shadow: none;
    cursor: pointer;
    padding: 0;
}

.featured-carousel__arrow {
    align-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    height: 2.75em;
    justify-content: center;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    width: 2.75em;
}

.featured-carousel__arrow:hover,
.featured-carousel__arrow:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(126, 230, 222, 0.55);
    color: #ffffff;
}

.featured-carousel__count {
    align-items: baseline;
    display: inline-flex;
    font-variant-numeric: tabular-nums;
    gap: 0.35em;
    min-width: 4.4em;
}

.featured-carousel__count strong {
    color: #ffffff;
    font-size: 1.05em;
}

.featured-carousel__count span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78em;
}

.featured-carousel__dots {
    align-items: center;
    display: flex;
    gap: 0.48em;
}

.featured-carousel__dot {
    border-radius: 999px;
    height: 0.55em;
    opacity: 0.65;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    width: 0.55em;
}

.featured-carousel__dot.is-active {
    background: #7ee6de;
    border-color: #7ee6de;
    opacity: 1;
    width: 1.5em;
}

.featured-carousel__dot:hover,
.featured-carousel__dot:focus-visible {
    border-color: rgba(126, 230, 222, 0.75);
    opacity: 1;
}

@keyframes featured-carousel-progress {
    to {
        transform: scaleX(1);
    }
}

@media screen and (max-width: 980px) {
    .featured-carousel {
        height: auto;
        min-height: 0;
        padding: 2.5em 0 2em;
    }

    .featured-carousel .inner {
        display: block;
        height: auto;
        max-width: calc(100vw - 3em);
    }

    .featured-product {
        --featured-card-gutter: 1.65em;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
        min-height: 0;
    }

    .featured-carousel__stage {
        height: auto;
        min-height: 0;
    }

    .featured-product__gallery {
        margin: var(--featured-card-gutter);
        margin-bottom: 0;
    }

    .featured-product__thumbnail-frame {
        flex: none;
        height: 7.5rem;
        min-height: 7.5rem;
        overflow: hidden;
    }

    .featured-product__media-frame {
        flex: none;
    }

    .featured-product__media {
        height: 100%;
        width: 100%;
    }

    .featured-product__thumbnails {
        height: 6rem;
        min-height: 6rem;
    }

    .featured-product__thumbnail {
        flex: 0 0 8rem;
        height: 5.25rem;
        max-height: 5.25rem;
        min-width: 8rem;
        width: 8rem;
    }

    .featured-product__body {
        border-left: 0;
        border-top: solid 1px rgba(255, 255, 255, 0.07);
        min-height: 20rem;
        padding: var(--featured-card-gutter);
    }

    .featured-product__kicker {
        min-height: 2.4em;
    }

    .featured-product__body h3 {
        min-height: 2.16em;
    }

    .featured-product__description {
        min-height: 7.2em;
    }

    .featured-product__actions {
        margin-top: var(--hb-space-48);
    }

    .featured-carousel__footer {
        margin-top: 1.25em;
    }
}

@media screen and (max-width: 736px) {
    .featured-carousel {
        padding: 2em 0 1.5em;
    }

    .featured-carousel .inner {
        max-width: calc(100vw - 2em);
    }

    .featured-carousel__heading {
        margin-bottom: 1.2em;
    }

    .featured-carousel__heading h2 {
        font-size: clamp(1.55em, 8vw, 2em);
        letter-spacing: 0.16em;
        line-height: 1.25;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .featured-product {
        --featured-card-gutter: 1.4em;
    }

    .featured-product__thumbnail-frame {
        flex: none;
        height: 7.5rem;
        min-height: 7.5rem;
    }

    .featured-product__thumbnails {
        height: auto;
        min-height: 6rem;
    }

    .featured-product__thumbnail {
        flex-basis: 8rem;
        height: 5.25rem;
        min-width: 8rem;
    }

    .featured-product__body {
        justify-content: flex-start;
    }

    .featured-product__body h3 {
        font-size: 1.75em;
    }

    .featured-product__actions .button {
        min-width: 0;
        width: 100%;
    }

    .featured-carousel__footer {
        grid-template-columns: 1fr;
    }

    .featured-carousel__controls {
        justify-content: space-between;
    }
}

@media (prefers-reduced-motion: reduce) {
    .featured-product__media img {
        transition: none;
    }

    .featured-carousel__progress span.is-running {
        animation: none;
        transform: scaleX(1);
    }
}

.product-subtitle {
    color: var(--hb-accent) !important;
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 1em;
    text-transform: uppercase;
}

#products > .inner {
    box-sizing: border-box;
    max-width: none;
    padding-bottom: 2.25em;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    padding-top: 2.25em;
    width: min(calc(100vw - 3rem), 106em);
}

#products {
    background: #242d40;
}

#products header.major .section-eyebrow,
#services header.major .section-eyebrow,
#why-hyperbyte header.major .section-eyebrow,
#support header .section-eyebrow {
    color: var(--hb-accent) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin: 0 0 0.8rem;
    text-transform: uppercase;
}

#products header.major .section-description,
#services header.major .section-description,
#why-hyperbyte header.major .section-description,
#support header .section-description {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.075em;
    line-height: 1.7;
    text-transform: none;
}

#products header.major h2 {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-grid {
    display: grid;
    gap: clamp(1rem, 1.5vw, 1.5rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    isolation: isolate;
    position: relative;
}

.product-grid::before {
    background: transparent;
    border: solid 1px rgba(255, 255, 255, 0.06);
    border-radius: var(--hb-radius-8);
    bottom: calc(var(--hb-space-24) * -1);
    box-shadow: none;
    content: '';
    left: calc(var(--hb-space-24) * -1);
    pointer-events: none;
    position: absolute;
    right: calc(var(--hb-space-24) * -1);
    top: calc(var(--hb-space-24) * -1);
    z-index: -1;
}

.product-grid-card {
    backdrop-filter: blur(10px);
    background: rgba(10, 16, 30, 0.18);
    border: solid 1px rgba(255, 255, 255, 0.09);
    border-radius: 0.9em;
    box-shadow: 0 18px 36px rgba(5, 8, 18, 0.16);
    overflow: hidden;
    position: relative;
    transition: box-shadow var(--hb-motion-base) var(--hb-ease-smooth), border-color var(--hb-motion-base) var(--hb-ease-smooth);
}

.product-grid-card:hover,
.product-grid-card:focus-within {
    background: rgba(10, 16, 30, 0.26);
    border-color: rgba(126, 230, 222, 0.18);
    box-shadow: 0 24px 44px rgba(5, 8, 18, 0.22);
}

.product-grid-image {
    border: 0;
    display: block;
}

.product-grid-image img {
    aspect-ratio: 3 / 2;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.product-grid-content {
    padding: 1.55em 1.5em 1.7em;
}

.product-grid-content h3 {
    font-size: 1.2em;
    line-height: 1.4;
    margin-bottom: 0.7em;
}

.product-grid-description {
    font-size: 0.9em;
    line-height: 1.7;
    margin-bottom: var(--hb-space-24);
    min-height: 0;
}

.product-grid-content .actions {
    display: flex;
    gap: var(--hb-space-16);
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
    width: 100%;
}

.product-grid-content .actions li {
    flex: 1 1 0;
    padding: 0;
    width: 100%;
}

body.landing .services-section {
    background: #21a69c;
    border-bottom: solid 1px rgba(126, 230, 222, 0.08);
    border-top: solid 1px rgba(255, 255, 255, 0.05);
    padding: 4em 0 4.25em;
}

.services-section > .inner {
    box-sizing: border-box;
    max-width: none;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    width: min(calc(100vw - 3rem), 106em);
}

.services-section header.major {
    margin: 0 0 2.5em;
    max-width: 76em;
    text-align: left;
}

.services-section header.major h2 {
    border: 0;
    margin-bottom: 0.45em;
    padding-bottom: 0;
}

.services-section header.major p {
    margin-left: 0;
    margin-right: 0;
}

.services-grid {
    display: flex;
    gap: clamp(1rem, 1.45vw, 1.35rem);
    margin-left: 0;
    margin-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 var(--hb-space-16);
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(126, 230, 222, 0.55) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
}

.services-grid::-webkit-scrollbar {
    height: 8px;
}

.services-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.services-grid::-webkit-scrollbar-thumb {
    background: rgba(126, 230, 222, 0.58);
    border-radius: 999px;
}

.service-card {
    backdrop-filter: blur(10px);
    background: rgba(10, 16, 30, 0.16);
    border: solid 1px rgba(255, 255, 255, 0.09);
    border-radius: 0.8em;
    box-shadow: 0 16px 32px rgba(4, 7, 16, 0.12);
    flex: 0 0 calc((100% - 4.05rem) / 4);
    min-height: 15rem;
    min-width: 0;
    padding: clamp(1.35rem, 1.75vw, 1.85rem);
    scroll-snap-align: start;
    text-align: left;
}

.service-card > .icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: solid 1px rgba(255, 255, 255, 0.18);
    border-radius: 0.65em;
    color: #7ee6de;
    display: inline-flex;
    font-size: 1.2rem;
    height: 2.8rem;
    justify-content: center;
    margin-bottom: 1.35rem;
    width: 2.8rem;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.14em;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 0.9em;
    line-height: 1.75;
    margin: 0;
    text-transform: none;
}

.services-section__cta {
    margin-top: var(--hb-space-32);
    text-align: right;
}

.services-section__cta .button {
    min-width: 14rem;
}

.testimonial-section {
    background:
        linear-gradient(135deg, rgba(17, 25, 43, 0.98), rgba(10, 15, 29, 0.98));
    padding: 4.5em 0 4.75em;
}

.testimonial-section > .inner {
    box-sizing: border-box;
    max-width: none;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    width: min(calc(100vw - 3rem), 106em);
}

.testimonial-section header.major {
    margin: 0 0 2.5em;
    max-width: 52em;
    text-align: left;
}

.testimonial-section header.major h2 {
    border: 0;
    margin-bottom: 0.45em;
    padding-bottom: 0;
}

.testimonial-section header.major p {
    margin-left: 0;
    margin-right: 0;
}

.testimonial-grid {
    display: grid;
    gap: clamp(1rem, 1.45vw, 1.35rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
    backdrop-filter: blur(10px);
    background: rgba(10, 16, 30, 0.18);
    border: solid 1px rgba(255, 255, 255, 0.09);
    border-radius: 0.9em;
    box-shadow: 0 20px 46px rgba(4, 7, 16, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 15.5rem;
    padding: clamp(1.35rem, 1.75vw, 1.75rem);
    text-align: left;
}

.testimonial-card__rating {
    align-items: center;
    color: #7ee6de;
    display: flex;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 0.8rem;
    letter-spacing: 0;
    margin-bottom: 1.35rem;
}

.testimonial-card__rating span {
    color: #e8483a;
    letter-spacing: 0.08em;
}

.testimonial-card__rating strong {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
}

.testimonial-card blockquote {
    border: 0;
    margin: 0;
    padding: 0;
}

.testimonial-card blockquote p {
    color: #ffffff !important;
    font-size: 1.08em;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.45;
    margin: 0;
    text-transform: none;
}

.testimonial-card footer {
    margin-top: auto;
    padding-top: 1.4rem;
}

.testimonial-card footer strong {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.testimonial-card footer span {
    color: rgba(255, 255, 255, 0.54);
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.testimonial-section__source {
    margin-top: 2rem;
    text-align: right;
}

.testimonial-section__source a {
    border-bottom: 0;
    border-bottom-color: rgba(126, 230, 222, 0.45);
    color: #7ee6de;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.testimonial-section__source a:hover,
.testimonial-section__source a:focus-visible {
    color: #ffffff !important;
}

#why-hyperbyte {
    background:
        linear-gradient(135deg, rgba(68, 75, 122, 0.98), rgba(52, 59, 104, 0.98));
    padding: 4.5em 0 5em;
}

#why-hyperbyte > .inner {
    box-sizing: border-box;
    max-width: none;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    width: min(calc(100vw - 3rem), 106em);
}

#why-hyperbyte header.major {
    margin-bottom: 3em;
    max-width: none;
}

#why-hyperbyte header.major h2 {
    letter-spacing: 0.12em;
}

#why-hyperbyte .company-story-shell {
    max-width: none;
}

#why-hyperbyte .company-story-panel {
    backdrop-filter: blur(10px);
    background: rgba(10, 16, 30, 0.18);
    border: solid 1px rgba(255, 255, 255, 0.09);
    border-radius: 0.8em;
    box-shadow: 0 20px 46px rgba(4, 7, 16, 0.2);
    justify-content: flex-start;
    margin-bottom: 2em;
    min-height: 14em;
    padding: 3.25em 3.5em;
}

#why-hyperbyte .company-story-panel .icon.major {
    align-items: center;
    background: rgba(126, 230, 222, 0.1);
    border: solid 1px rgba(126, 230, 222, 0.18);
    border-radius: 0.65em;
    display: inline-flex;
    font-size: 1.2rem;
    height: 2.8rem;
    justify-content: center;
    line-height: 1;
    transform: none;
    width: 2.8rem;
}

#why-hyperbyte .company-story-panel .icon.major:before {
    transform: none;
}

#why-hyperbyte .company-story-title {
    font-size: 1.25em;
    letter-spacing: 0.14em;
    line-height: 1.35;
}

#why-hyperbyte .company-story-copy p {
    font-size: 1.05em;
    max-width: 42em;
}

body.landing #footer,
body.is-mobile.landing #footer,
#footer {
    background: #0a0f1d;
    background-color: #0a0f1d;
    padding: 3.25em 1.5rem 2.4em;
}

#footer .footer-anchor {
    display: block;
    height: 0;
    overflow: hidden;
    position: relative;
    top: -4.5rem;
    visibility: hidden;
}

#footer .footer-support {
    margin: 0 auto 2rem;
    max-width: 54rem;
    text-align: center;
}

#footer .footer-support h2 {
    border: 0;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.2;
    margin: 0 0 0.65rem;
    padding-bottom: 0;
}

#footer .footer-support p {
    margin: 0;
}

#footer .footer-support .section-eyebrow {
    margin: 0 0 0.75rem;
}

#footer .footer-support > p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.7;
    margin: 0 auto 1.45rem;
    max-width: 46rem;
}

.footer-area-tabs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin: 1.6rem auto 1.9rem;
    max-width: min(106em, calc(100vw - 3rem));
}

.footer-area-tabs a {
    background: rgba(255, 255, 255, 0.045);
    border: solid 1px rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
}

.footer-area-tabs a:hover,
.footer-area-tabs a:focus-visible {
    background: rgba(126, 230, 222, 0.1);
    border-color: rgba(126, 230, 222, 0.55);
    color: #ffffff;
}

#footer .icons {
    margin-bottom: 1.2rem;
}

#footer .copyright {
    margin-bottom: 0;
}

.product-header {
    background-position: center center;
    background-size: cover;
}

.feature-list {
    list-style: disc;
    margin-left: 1.5em;
}

.feature-list li {
    margin-bottom: 0.75em;
}

.screenshot-grid {
    display: grid;
    gap: 1.5em;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screenshot-grid .image {
    border: 0;
}

.screenshot-grid img {
    border-radius: 6px;
    display: block;
    width: 100%;
}

/* Rich product pages */
.product-detail-page #main,
.help-page #main { background: #11182a; }

.product-detail-hero {
    align-items: flex-end;
    background-image: linear-gradient(90deg, rgba(7, 12, 25, 0.96) 0%, rgba(7, 12, 25, 0.78) 52%, rgba(7, 12, 25, 0.38)), var(--product-hero);
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: min(78vh, 52rem);
    padding: 8rem max(2rem, calc((100vw - 76rem) / 2)) 4rem;
}

.product-detail-hero__inner { max-width: 48rem; }
.product-detail-hero__eyebrow,
.product-section__heading > p,
.section-eyebrow { color: #7ee6de !important; font-size: .75rem; font-weight: 700; letter-spacing: .2em; margin: 0 0 .8rem; text-transform: uppercase; }
.product-detail-hero h2 { border: 0; font-size: clamp(2.4rem, 6vw, 5.4rem); letter-spacing: .06em; line-height: .98; margin: 0 0 1rem; padding: 0; }
.product-detail-hero__subtitle { color: #fff !important; font-size: 1.05rem; font-weight: 700; letter-spacing: .15em; margin-bottom: 1.2rem; text-transform: uppercase; }
.product-detail-hero__summary { color: rgba(255,255,255,.82) !important; font-size: .95rem; line-height: 1.8; max-width: 44rem; }
.product-detail-hero .actions { margin-top: 2rem; }

.product-facts { display: grid; gap: 1px; grid-template-columns: repeat(4, 1fr); margin: 2.5rem 0 0; max-width: 48rem; }
.product-facts div { background: rgba(255,255,255,.08); padding: 1rem; }
.product-facts dt { color: rgba(255,255,255,.52); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.product-facts dd { color: #fff; font-size: .85rem; margin: .35rem 0 0; }

.product-section-nav { align-items: center; background: rgba(14,20,36,.95); border-bottom: 1px solid rgba(255,255,255,.08); display: flex; gap: 1.4rem; overflow-x: auto; padding: 0 max(1.5rem, calc((100vw - 76rem) / 2)); position: sticky; scrollbar-width: none; top: 3rem; white-space: nowrap; z-index: 100; }
.product-section-nav a { border: 0; color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 700; letter-spacing: .14em; padding: 1.2rem 0; text-transform: uppercase; }
.product-section-nav a:hover { color: #7ee6de; }

.product-section { margin: 0 auto; max-width: 80rem; padding: clamp(4rem, 8vw, 7rem) 2rem; }
.product-section + .product-section { border-top: 1px solid rgba(255,255,255,.08); }
.product-section__heading { margin-bottom: 2.5rem; max-width: 54rem; }
.product-section__heading h3 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 .7rem; }
.product-section__heading > span { color: rgba(255,255,255,.62); display: block; line-height: 1.7; }
.product-overview__grid { display: grid; gap: clamp(2rem, 5vw, 5rem); grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr); }
.product-rich-copy p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.9; }
.product-feature-panel { background: linear-gradient(145deg, rgba(39,50,78,.8), rgba(17,24,42,.9)); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: 2rem; }
.product-feature-panel h4 { margin-bottom: 1.5rem; }
.product-feature-panel .feature-list { margin-bottom: 0; }

.detail-gallery__stage { align-items: center; aspect-ratio: 3/2; background: #080d18; border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; display: flex; justify-content: center; overflow: hidden; position: relative; }
.detail-gallery__image { background: transparent; border: 0; box-shadow: none; display: block; height: 100%; line-height: 0; max-width: none; overflow: hidden; padding: 0; text-transform: none; white-space: normal; width: 100%; }
.detail-gallery__image img { display: block; height: 100%; max-width: none; object-fit: contain; width: 100%; }
.detail-gallery__arrow { background: rgba(5,9,18,.72); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; cursor: pointer; height: 3rem; padding: 0; position: absolute; top: 50%; transform: translateY(-50%); width: 3rem; z-index: 2; }
.detail-gallery__arrow.is-previous { left: 1.2rem; }.detail-gallery__arrow.is-next { right: 1.2rem; }
.detail-gallery__count { background: rgba(5,9,18,.75); border-radius: 999px; bottom: 1rem; font-size: .75rem; left: 1rem; letter-spacing: .14em; padding: .45rem .8rem; position: absolute; }
.detail-gallery__thumbs { display: flex; gap: .8rem; margin-top: 1rem; overflow-x: auto; padding-bottom: .8rem; }
.detail-gallery__thumb { aspect-ratio: 3/2; background: #080d18; border: 2px solid transparent; border-radius: .55rem; flex: 0 0 clamp(8rem, 18vw, 13rem); height: auto; line-height: 0; max-width: none; overflow: hidden; padding: 0; text-transform: none; white-space: normal; }
.detail-gallery__thumb.is-active { border-color: #7ee6de; }.detail-gallery__thumb img { display: block; height: 100%; max-width: none; object-fit: contain; width: 100%; }

.mobile-showcase { align-items: center; display: flex; gap: clamp(1.2rem, 4vw, 3rem); justify-content: center; overflow-x: auto; padding: 1rem 0 2rem; }
.phone-preview { aspect-ratio: 9/19.5; background: #050912; border: .5rem solid #1d2639; border-radius: 2.2rem; box-shadow: 0 2rem 4rem rgba(0,0,0,.35); flex: 0 0 clamp(13rem, 24vw, 18rem); height: auto; line-height: 0; max-width: none; overflow: hidden; padding: 0; position: relative; text-transform: none; white-space: normal; }
.phone-preview__speaker { background: #111827; border-radius: 0 0 .8rem .8rem; height: 1.1rem; left: 50%; position: absolute; top: 0; transform: translateX(-50%); width: 42%; z-index: 2; }
.phone-preview img { height: 100%; object-fit: cover; width: 100%; }

.responsive-video { aspect-ratio: 16/9; background: #060a14; border-radius: 1rem; box-shadow: 0 2rem 5rem rgba(0,0,0,.35); overflow: hidden; }.responsive-video iframe { border: 0; height: 100%; width: 100%; }
.external-media-card,.webgl-preview__placeholder { align-items: center; background: linear-gradient(135deg,#1a243c,#0a0f1d); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; display: flex; flex-direction: column; min-height: 24rem; justify-content: center; padding: 3rem; text-align: center; }
.external-media-card .icon,.webgl-preview__placeholder .icon { color: #7ee6de; font-size: 3rem; margin-bottom: 1.2rem; }
.webgl-preview iframe { aspect-ratio: 16/9; border: 0; border-radius: 1rem; display: block; width: 100%; }

.resource-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit,minmax(13rem,1fr)); }
.resource-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: .8rem; display: flex; flex-direction: column; min-height: 11rem; padding: 1.5rem; transition: background var(--hb-motion-fast), transform var(--hb-motion-fast) var(--hb-ease-smooth); }
.resource-card:hover { background: rgba(126,230,222,.08); transform: translateY(-3px); }.resource-card .icon { color:#7ee6de;font-size:1.5rem;margin-bottom:auto }.resource-card strong{color:#fff;margin-top:1rem}.resource-card span:last-child{color:rgba(255,255,255,.5);font-size:.75rem;margin-top:.35rem}

.faq-list details { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: .7rem; margin-bottom: .8rem; }
.faq-list summary { color: #fff; cursor: pointer; font-weight: 700; list-style: none; padding: 1.25rem 3.5rem 1.25rem 1.4rem; position: relative; }
.faq-list summary::after { color:#7ee6de;content:'+';font-size:1.5rem;position:absolute;right:1.35rem;top:.85rem }.faq-list details[open] summary::after{content:'−'}
.faq-list details > div { color: rgba(255,255,255,.7); padding: 0 1.4rem 1.3rem; }.faq-list details p{margin:0}
.section-cta { display:flex;gap:1rem;margin-top:2rem; }
.related-product-grid { display:grid;gap:1.25rem;grid-template-columns:repeat(3,1fr) }.related-product-grid article{background:#0a101e;border:1px solid rgba(255,255,255,.09);border-radius:.8rem;overflow:hidden}.related-product-grid a{border:0}.related-product-grid img{aspect-ratio:3/2;display:block;object-fit:cover;width:100%}.related-product-grid article div{padding:1.3rem}.related-product-grid p{color:#7ee6de!important;font-size:.65rem;letter-spacing:.14em;margin:0 0 .5rem;text-transform:uppercase}.related-product-grid h4{font-size:1rem;margin:0 0 1rem}.related-product-grid span{color:rgba(255,255,255,.55);font-size:.75rem}

.media-lightbox { align-items:center;background:rgba(2,5,12,.94);display:flex;inset:0;justify-content:center;padding:4rem;position:fixed;z-index:20000 }.media-lightbox[hidden]{display:none}.media-lightbox img{max-height:90vh;max-width:92vw;object-fit:contain}.media-lightbox__close{background:transparent;border:0;color:#fff;font-size:2.5rem;position:absolute;right:1rem;top:1rem}

/* FAQ and support */
.help-hero { background:linear-gradient(135deg,#263852,#101728);padding:9rem 2rem 5rem;text-align:center }.help-hero > div{margin:auto;max-width:58rem}.help-hero p{color:#7ee6de!important;font-size:.75rem;font-weight:700;letter-spacing:.2em;margin-bottom:1rem;text-transform:uppercase}.help-hero h2{border:0;font-size:clamp(2.2rem,5vw,4rem);margin:0 0 1rem;padding:0}.help-hero span{color:rgba(255,255,255,.7);font-size:.95rem;line-height:1.7}
.help-shell,.support-shell{margin:auto;max-width:80rem;padding:4rem 2rem 7rem}.faq-search{margin:0 auto 3rem;max-width:52rem}.faq-search label{font-size:.75rem;letter-spacing:.15em;text-transform:uppercase}.faq-search input{font-size:1.05rem;height:3.7rem}.faq-search p{font-size:.8rem;margin:.5rem 0 0}.faq-layout{display:grid;gap:4rem;grid-template-columns:14rem minmax(0,1fr)}.faq-sidebar{align-self:start;display:flex;flex-direction:column;gap:.7rem;position:sticky;top:6rem}.faq-sidebar strong{color:#7ee6de;font-size:.7rem;letter-spacing:.15em;margin-bottom:.4rem;text-transform:uppercase}.faq-sidebar a:not(.button){border:0;color:rgba(255,255,255,.62);font-size:.8rem}.faq-sidebar .button{margin-top:1rem}.faq-group{margin-bottom:4rem;scroll-margin-top:6rem}.faq-group h3{font-size:1.8rem;margin-bottom:1.5rem}.faq-group[hidden],.faq-list details[hidden]{display:none}.text-link{color:#7ee6de;font-size:.8rem}.help-cta{align-items:center;background:linear-gradient(135deg,rgba(42,56,87,.9),rgba(15,22,39,.9));border:1px solid rgba(255,255,255,.1);border-radius:1rem;display:flex;justify-content:space-between;padding:2rem}.help-cta p:last-child{margin-bottom:0}
.support-shell{display:grid;gap:4rem;grid-template-columns:minmax(16rem,.7fr) minmax(0,1.3fr)}.support-guidance{align-self:start;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.09);border-radius:1rem;padding:2rem;position:sticky;top:5rem}.support-guidance li{color:rgba(255,255,255,.7);margin-bottom:.8rem}.support-direct{font-size:.8rem;margin:1.5rem 0 0}.support-form-card{background:#151e32;border:1px solid rgba(255,255,255,.1);border-radius:1rem;padding:clamp(1.5rem,4vw,3rem)}.support-form-card fieldset{border:0;margin:0 0 2rem;padding:0}.support-form-card legend{color:#fff;font-weight:700;margin-bottom:1rem}.request-type-grid{display:grid;gap:.75rem;grid-template-columns:repeat(3,1fr)}.request-type-card{margin:0}.request-type-card input{height:1px;opacity:0;position:absolute;width:1px}.request-type-card span{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);border-radius:.7rem;display:block;height:100%;padding:1rem}.request-type-card input:checked + span{background:rgba(126,230,222,.1);border-color:#7ee6de}.request-type-card strong,.request-type-card small{display:block}.request-type-card small{color:rgba(255,255,255,.55);font-size:.7rem;line-height:1.5;margin-top:.3rem}.form-grid{display:grid;gap:1.2rem;grid-template-columns:repeat(2,1fr)}.form-grid label{font-size:.75rem;letter-spacing:.08em;margin:0;text-transform:uppercase}.form-grid input,.form-grid select,.form-grid textarea{margin-top:.5rem;text-transform:none}.form-grid textarea{resize:vertical}.form-grid label small{color:rgba(255,255,255,.5);display:block;line-height:1.5;margin-top:.5rem;text-transform:none}.form-span{grid-column:1/-1}.form-honeypot{left:-9999px;position:absolute}.post-purchase-field[hidden]{display:none}.form-notice{border-radius:.7rem;margin-bottom:1.5rem;padding:1.2rem}.form-notice p,.form-notice ul{margin:.4rem 0 0}.form-notice.is-success{background:rgba(68,190,145,.12);border:1px solid rgba(68,190,145,.4)}.form-notice.is-error{background:rgba(232,72,58,.12);border:1px solid rgba(232,72,58,.4)}

/* Shared polish for non-home pages. */
.site-global-nav {
    background: rgba(9, 15, 28, .94);
}

body:not(.landing) #page-wrapper {
    padding-top: 0;
}

.product-detail-page #main,
.help-page #main {
    background:
        radial-gradient(circle at 88% 8%, rgba(126, 230, 222, .08), transparent 30rem),
        linear-gradient(180deg, #11182a 0%, #0d1423 100%);
}

.product-detail-page #main > .product-showcase {
    padding-top: 4.75rem;
}

.product-section-nav {
    top: 3.75rem;
}

.product-detail-page .product-section,
.product-showcase__inner,
.help-shell,
.support-shell {
    box-sizing: border-box;
    max-width: none;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    width: min(calc(100vw - 3rem), 106em);
}

.product-detail-page .product-section {
    padding-bottom: clamp(4rem, 5vw, 5.5rem);
    padding-top: clamp(4rem, 5vw, 5.5rem);
}

#main > header.help-hero,
.help-hero {
    background:
        radial-gradient(circle at 48% 0%, rgba(126, 230, 222, .1), transparent 26rem),
        linear-gradient(180deg, #243049 0%, #202844 100%) !important;
    padding: 6.25rem 2rem 4.5rem;
}

.help-hero > div {
    max-width: min(64rem, calc(100vw - 3rem));
}

.help-hero h2 {
    letter-spacing: .12em;
    text-transform: uppercase;
}

.help-shell,
.support-shell {
    padding-bottom: 5.75rem;
    padding-top: 4.5rem;
}

.faq-search {
    margin-left: 0;
    margin-right: 0;
    max-width: 36rem;
    width: 100%;
}

.faq-search input {
    box-sizing: border-box;
    width: 100%;
}

.faq-search input,
.support-form-card,
.support-guidance,
.help-cta,
.faq-list details,
.product-feature-panel,
.product-experience-card,
.resource-card,
.related-product-grid article,
.product-purchase-card,
.product-facts,
.product-purchase-card__support {
    background: rgba(8, 12, 24, .58);
    border: solid 1px rgba(255, 255, 255, .1);
    border-radius: .8rem;
    box-shadow: 0 20px 46px rgba(4, 7, 16, .2);
}

.support-form-card,
.support-guidance,
.help-cta {
    padding: clamp(1.35rem, 2vw, 2rem);
}

.request-type-card span {
    background: rgba(255, 255, 255, .035);
    border-radius: .65rem;
}

.request-type-card input:checked + span {
    background: rgba(126, 230, 222, .1);
    box-shadow: inset 0 0 0 1px rgba(126, 230, 222, .3);
}

.faq-sidebar a:not(.button),
.support-guidance li,
.support-direct,
.faq-list details > div,
.help-cta p,
.form-grid label small {
    color: rgba(255, 255, 255, .68);
}

.faq-sidebar .button,
.support-guidance .button,
.help-cta .button {
    width: 100%;
}

.product-showcase__identity h2,
.product-detail-page .product-section__heading h3,
.help-hero h2,
.faq-group h3,
.support-guidance h3 {
    color: #ffffff;
}

.product-purchase-card__heading,
.product-facts div {
    border-color: rgba(255, 255, 255, .08);
}

#footer .footer-area-tabs {
    margin-top: 0;
}

@media screen and (max-width: 980px) {
    .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .testimonial-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .product-overview__grid,.faq-layout,.support-shell{grid-template-columns:1fr}.faq-sidebar,.support-guidance{position:static}.faq-sidebar{display:none}.related-product-grid{grid-template-columns:repeat(2,1fr)}

    .service-card {
        flex-basis: 320px;
    }
}
@media screen and (max-width: 736px) {
    .product-detail-hero{min-height:0;padding:8rem 1.25rem 3rem}.product-detail-hero h2{font-size:2.4rem}.product-facts{grid-template-columns:repeat(2,1fr)}.product-section{padding:3.5rem 1rem}.product-section-nav{top:3rem}.detail-gallery__arrow{height:2.5rem;width:2.5rem}.mobile-showcase{justify-content:flex-start}.related-product-grid,.request-type-grid,.form-grid{grid-template-columns:1fr}.form-span{grid-column:auto}.section-cta,.help-cta{align-items:stretch;flex-direction:column}.help-shell,.support-shell{padding:3rem 1rem 5rem}.media-lightbox{padding:1rem}
}

@media screen and (max-width: 736px) {
    #products > .inner {
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 2rem;
    }

    #products header.major {
        margin-bottom: 2rem;
    }

    #products header.major h2 {
        font-size: clamp(1.35rem, 6.8vw, 1.8rem);
        line-height: 1.35;
    }

    #products header.major p {
        line-height: 1.7;
    }

    .product-grid {
        gap: 1.25rem;
    }

    .services-section__cta {
        margin-top: var(--hb-space-24);
        text-align: left;
    }

    .services-section__cta .button {
        width: 100%;
    }

    .service-card {
        flex-basis: min(304px, calc(100vw - 48px));
    }

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

    .testimonial-section__source {
        text-align: left;
    }

    .product-grid-image img {
        height: auto;
    }

    .product-grid-content {
        padding: 1.5rem 1.35rem 1.65rem;
    }

    .product-grid-description {
        min-height: 0;
    }

    .studio-focus-section .inner {
        max-width: calc(100vw - 2em);
    }

    .company-story-shell {
        padding: 0;
    }

    .company-story-panel {
        gap: 1.75em;
        min-height: 0;
    }

    .company-story-meta,
    .company-story-body {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .company-story-panel {
        flex-direction: column;
        gap: 1.75em;
    }

    #why-hyperbyte .company-story-panel {
        padding: 2.25em 1.5em;
    }

    .company-story-copy {
        text-align: center;
    }

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

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

/* Scale normalization: user-visible sizes follow a 4px/8px system.
   Exceptions remain for alpha values, color channels, timings, ratios, transforms,
   viewport math, and z-index because those are not spatial rhythm values. */
.homepage-section-nav {
    gap: var(--hb-space-24);
    height: var(--hb-space-56);
    padding-left: var(--hb-space-32);
    padding-right: var(--hb-space-32);
}

.homepage-section-nav__links {
    gap: var(--hb-space-32);
}

.homepage-section-nav__links a,
.footer-area-tabs a,
.section-eyebrow,
#products header.major .section-eyebrow,
#services header.major .section-eyebrow,
#why-hyperbyte header.major .section-eyebrow,
#support header .section-eyebrow,
.featured-carousel__eyebrow,
.product-subtitle,
.featured-product__kicker,
.testimonial-section__source a {
    font-size: var(--hb-font-12);
    letter-spacing: var(--hb-space-4);
    line-height: var(--hb-line-16);
}

.hyperbyte-banner h1 {
    font-size: var(--hb-font-60) !important;
    line-height: var(--hb-line-64);
    margin-bottom: var(--hb-space-32);
    padding: var(--hb-space-16) var(--hb-space-32);
}

.hyperbyte-banner .hero-title-main-inline {
    letter-spacing: var(--hb-space-4);
}

.hyperbyte-banner .hero-company-kicker {
    font-size: var(--hb-font-16);
    letter-spacing: var(--hb-space-4);
    line-height: var(--hb-line-16);
    margin-bottom: var(--hb-space-16);
}

.hyperbyte-banner .hero-company-copy {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.96em;
    font-weight: 400;
    letter-spacing: 0.075em !important;
    line-height: var(--hb-line-24);
    margin-bottom: var(--hb-space-32);
}

.hyperbyte-banner .actions.special {
    gap: var(--hb-space-16);
}

.hyperbyte-banner .actions.special .button {
    font-size: var(--hb-font-12);
    height: var(--hb-control-40);
    line-height: var(--hb-line-16);
    min-width: 272px;
    width: 272px;
}

.hero-scroll-cue {
    font-size: var(--hb-font-16);
    gap: var(--hb-space-12);
    letter-spacing: var(--hb-space-4);
    margin-left: -144px;
    width: 288px;
}

.hero-scroll-cue::after {
    height: var(--hb-space-24);
    width: var(--hb-space-24);
}

.studio-focus-section .inner,
.featured-carousel__heading,
.featured-carousel__stage,
.featured-carousel__footer,
#products > .inner,
.services-section > .inner,
.testimonial-section > .inner,
#why-hyperbyte > .inner,
.footer-area-tabs,
.product-detail-page .product-section,
.product-showcase__inner,
.help-shell,
.support-shell {
    max-width: min(var(--hb-site-max), calc(100vw - 48px));
}

.featured-carousel {
    min-height: 672px;
    padding-bottom: var(--hb-space-32);
    padding-top: var(--hb-space-24);
}

.featured-carousel .inner {
    height: auto;
}

.featured-carousel__heading {
    margin-bottom: var(--hb-space-16);
}

.featured-carousel__heading h2 {
    font-size: var(--hb-font-24);
    line-height: var(--hb-line-32);
}

.featured-product {
    --featured-card-gutter: var(--hb-space-32);
    border-radius: var(--hb-radius-12);
}

.featured-product__gallery {
    gap: var(--hb-space-16);
}

.featured-product__media-frame,
.featured-product__thumbnail-frame,
.featured-product__media {
    border-radius: var(--hb-media-radius);
    padding: var(--hb-media-thumb-padding);
}

.featured-product__media {
    padding: 0;
}

.featured-product__media-frame {
    padding: var(--hb-media-frame-padding);
}

.featured-product__thumbnail-frame {
    flex-basis: var(--hb-media-thumb-height);
}

.featured-product__media-label,
.featured-carousel__count span {
    font-size: var(--hb-font-12);
    letter-spacing: var(--hb-space-4);
}

.featured-product__gallery-arrow,
.featured-carousel__arrow,
.company-story-arrow {
    height: var(--hb-control-40);
    width: var(--hb-control-40);
}

.featured-carousel__controls {
    gap: var(--hb-space-12);
}

.featured-carousel__arrow {
    height: var(--hb-control-56);
    width: var(--hb-control-56);
}

.featured-product__thumbnails {
    gap: var(--hb-space-12);
    padding-bottom: var(--hb-space-8);
}

.featured-product__thumbnail {
    border-radius: var(--hb-radius-8);
}

.featured-product__body h3 {
    font-size: var(--hb-font-32);
    letter-spacing: var(--hb-space-4);
    line-height: var(--hb-line-40);
    margin-bottom: var(--hb-space-16);
}

.featured-product__description,
.product-grid-description,
.service-card p,
.company-story-copy p,
#footer .footer-support > p:not(.section-eyebrow),
#products header.major .section-description,
#services header.major .section-description,
#why-hyperbyte header.major .section-description,
#support header .section-description {
    font-size: var(--hb-font-16);
    line-height: var(--hb-line-24);
}

.featured-product__actions {
    gap: var(--hb-space-16);
    padding-top: var(--hb-space-24);
}

@media screen and (min-width: 981px) {
    .featured-product__actions {
        margin-top: auto;
    }

    .product-detail-feature__gallery {
        align-self: start;
    }

    .product-detail-feature__body {
        justify-content: flex-start;
    }

    .product-detail-feature__description {
        display: block;
        max-height: calc(var(--hb-line-24) * 4);
        overflow: hidden;
    }

    .product-detail-feature__description p {
        margin: 0;
    }

    .product-detail-feature__actions {
        margin-top: auto;
    }
}

.featured-carousel__footer {
    gap: var(--hb-space-24);
    margin-top: var(--hb-space-24);
}

.featured-carousel__count {
    min-width: var(--hb-space-64);
}

.featured-carousel__dot,
.company-story-dot {
    height: var(--hb-space-8);
    width: var(--hb-space-8);
}

.featured-carousel__dot.is-active {
    width: var(--hb-space-24);
}

#products > .inner,
.services-section > .inner,
.testimonial-section > .inner,
#why-hyperbyte > .inner {
    padding-left: var(--hb-space-32);
    padding-right: var(--hb-space-32);
}

#products > .inner {
    padding-bottom: var(--hb-space-40);
    padding-top: var(--hb-space-40);
}

body.landing .services-section,
.testimonial-section,
#why-hyperbyte {
    padding-bottom: var(--hb-space-72, 72px);
    padding-top: var(--hb-space-72, 72px);
}

body.landing #featured,
body.landing #testimonials,
body.landing #services {
    background-color: rgba(46, 56, 66, 0.9);
    border-bottom: solid 1px var(--hb-section-border);
    border-top: solid 1px rgba(255, 255, 255, 0.04);
}

body.landing #products,
body.landing #why-hyperbyte {
    background-color: rgba(67, 71, 117, 0.88);
    border-bottom: solid 1px var(--hb-section-border);
    border-top: solid 1px rgba(255, 255, 255, 0.04);
}

body.landing #featured,
body.landing #products,
body.landing #testimonials,
body.landing #why-hyperbyte,
body.landing #services {
    --hb-home-section-isometric-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='112' viewBox='0 0 192 112'%3E%3Cg fill='none' stroke='%2372e5dc' stroke-width='1' stroke-opacity='.026'%3E%3Cpath d='M32 16l32 18.5v37L32 90.5 0 72V35z'/%3E%3Cpath d='M32 16v37l32 18.5M32 53L0 35M32 53v37.5'/%3E%3Cpath d='M96 16l32 18.5v37L96 90.5 64 72V35z'/%3E%3Cpath d='M96 16v37l32 18.5M96 53L64 35M96 53v37.5'/%3E%3Cpath d='M160 16l32 18.5v37l-32 19-32-18.5V35z'/%3E%3Cpath d='M160 16v37l32 18.5M160 53l-32-18M160 53v37.5'/%3E%3Cpath d='M64 72l32-19 32 19M128 35l32-19M64 35l32-19M0 72l32 18.5 32-18.5M128 72l32 18.5 32-18.5'/%3E%3C/g%3E%3Cg fill='none' stroke='%23a664ff' stroke-width='1' stroke-opacity='.018'%3E%3Cpath d='M0 16l32 18.5 32-18.5M32 34.5v37M64 16v37M96 90.5v21.5M128 72v40M160 90.5v21.5'/%3E%3C/g%3E%3C/svg%3E");
    isolation: isolate;
    overflow: hidden;
    contain: paint;
    position: relative;
}

.support-shell {
    align-items: start;
}

.support-shell .support-guidance,
.support-shell .support-faq-panel {
    margin-top: 0;
}

.support-shell .faq-search {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
}

.support-shell .faq-group:first-of-type {
    margin-top: var(--hb-space-40);
}

body.landing #featured::before,
body.landing #products::before,
body.landing #testimonials::before,
body.landing #why-hyperbyte::before,
body.landing #services::before {
    background-image:
        var(--hb-home-section-isometric-pattern),
        linear-gradient(90deg, rgba(166, 100, 255, 0.01) 0%, rgba(114, 229, 220, 0.007) 48%, rgba(14, 181, 255, 0.012) 100%);
    background-position: center;
    background-size: 288px 168px, cover;
    content: '';
    inset: 0;
    opacity: 0.36;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

body.landing #featured > .inner,
body.landing #products > .inner,
body.landing #testimonials > .inner,
body.landing #why-hyperbyte > .inner,
body.landing #services > .inner {
    position: relative;
    z-index: 1;
}

body.landing #featured {
    background:
        linear-gradient(180deg, rgba(37, 143, 138, 0.07), transparent 40%),
        rgba(46, 56, 66, 0.9);
}

body.landing #products {
    background:
        linear-gradient(180deg, rgba(67, 71, 117, 0.12), transparent 42%),
        rgba(67, 71, 117, 0.88);
}

body.landing #testimonials {
    background:
        linear-gradient(180deg, rgba(37, 143, 138, 0.07), transparent 40%),
        rgba(46, 56, 66, 0.9);
}

body.landing #why-hyperbyte {
    background:
        linear-gradient(180deg, rgba(67, 71, 117, 0.12), transparent 42%),
        rgba(67, 71, 117, 0.88);
}

body.landing #services {
    background:
        linear-gradient(180deg, rgba(126, 230, 222, 0.08), transparent 44%),
        rgba(37, 143, 138, 0.9);
}

.services-section header.major,
.testimonial-section header.major {
    margin-bottom: var(--hb-space-40);
}

.product-grid,
.testimonial-grid {
    gap: var(--hb-space-24);
}

.services-grid {
    gap: var(--hb-space-24);
    padding-bottom: var(--hb-space-16);
}

.product-grid-card,
.testimonial-card,
.service-card,
#why-hyperbyte .company-story-panel,
.support-form-card,
.support-guidance,
.help-cta,
.faq-list details,
.product-feature-panel,
.product-experience-card,
.resource-card,
.related-product-grid article,
.product-purchase-card,
.product-facts,
.product-purchase-card__support {
    border-radius: var(--hb-radius-8);
}

.product-grid-content,
.service-card,
.testimonial-card {
    padding: var(--hb-space-24);
}

.service-card {
    flex-basis: calc((100% - 72px) / 4);
    min-height: 224px;
    padding: var(--hb-space-20, 20px);
}

.services-section .service-card > .icon {
    font-size: var(--hb-font-16);
    height: var(--hb-control-40);
    margin-bottom: var(--hb-space-20, 20px);
    width: var(--hb-control-40);
}

.services-section .service-card p {
    font-size: var(--hb-font-14);
    line-height: var(--hb-line-24);
}

.service-card > .icon,
#why-hyperbyte .company-story-panel .icon.major {
    border-radius: var(--hb-radius-8);
    font-size: var(--hb-font-20);
    height: var(--hb-control-48);
    margin-bottom: var(--hb-space-24);
    width: var(--hb-control-48);
}

.service-card h3,
.product-grid-content h3,
.testimonial-card footer strong,
#why-hyperbyte .company-story-title {
    font-size: var(--hb-font-16);
    letter-spacing: var(--hb-space-4);
    line-height: var(--hb-line-24);
    margin-bottom: var(--hb-space-16);
}

.product-grid-description {
    min-height: 0;
}

.testimonial-section__source {
    margin-top: var(--hb-space-32);
}

.testimonial-card {
    min-height: 248px;
}

.testimonial-card__rating {
    font-size: var(--hb-font-12);
    gap: var(--hb-space-12);
    margin-bottom: var(--hb-space-24);
}

.testimonial-card blockquote p {
    font-size: var(--hb-font-16);
    line-height: var(--hb-line-24);
}

.testimonial-card footer {
    padding-top: var(--hb-space-24);
}

#why-hyperbyte header.major {
    margin-bottom: var(--hb-space-48);
}

#why-hyperbyte .company-story-panel {
    margin-bottom: var(--hb-space-32);
    min-height: 224px;
    padding: var(--hb-space-48) var(--hb-space-56);
}

#footer {
    padding: var(--hb-space-56) var(--hb-space-24) var(--hb-space-40);
}

#footer .footer-support {
    margin-bottom: var(--hb-space-32);
}

#footer .footer-support h2 {
    font-size: var(--hb-font-24);
    line-height: var(--hb-line-32);
    margin-bottom: var(--hb-space-12);
}

.footer-area-tabs {
    gap: var(--hb-space-8);
    margin-bottom: var(--hb-space-32);
    margin-top: var(--hb-space-24);
}

.footer-area-tabs a {
    padding: var(--hb-space-12) var(--hb-space-16);
}

.help-hero {
    padding: var(--hb-space-96) var(--hb-space-32) var(--hb-space-72, 72px);
}

#main > header.help-hero h2,
.help-hero h2 {
    font-size: var(--hb-font-40);
    letter-spacing: var(--hb-space-4);
    line-height: var(--hb-line-48);
    margin-bottom: var(--hb-space-16);
}

#main > header.help-hero p,
.help-hero p {
    font-size: var(--hb-font-12);
    letter-spacing: var(--hb-space-4);
    line-height: var(--hb-line-16);
    margin-bottom: var(--hb-space-16);
}

#main > header.help-hero span,
.help-hero span {
    font-size: var(--hb-font-16);
    line-height: var(--hb-line-24);
}

.help-shell,
.support-shell {
    padding-bottom: var(--hb-space-96);
    padding-top: var(--hb-space-72, 72px);
}

.faq-search {
    margin-bottom: var(--hb-space-48);
}

.faq-layout,
.support-shell {
    gap: var(--hb-space-64);
}

.faq-list details {
    margin-bottom: var(--hb-space-12);
}

.faq-list summary {
    padding: var(--hb-space-20, 20px) var(--hb-space-56) var(--hb-space-20, 20px) var(--hb-space-24);
}

.faq-list details > div {
    padding: 0 var(--hb-space-24) var(--hb-space-24);
}

.faq-group h3 {
    font-size: var(--hb-font-24);
    letter-spacing: 0;
    line-height: var(--hb-line-32);
    margin-bottom: var(--hb-space-24);
}

.support-form-card,
.support-guidance,
.help-cta {
    padding: var(--hb-space-32);
}

.support-guidance .button {
    font-size: var(--hb-font-12);
    line-height: var(--hb-line-16);
    width: 100%;
}

.request-type-grid,
.form-grid {
    gap: var(--hb-space-16);
}

.form-notice {
    border-radius: var(--hb-radius-8);
    margin-bottom: var(--hb-space-24);
    padding: var(--hb-space-16);
}

@media screen and (max-width: 980px) {
    .homepage-section-nav {
        height: var(--hb-space-56);
        padding-left: var(--hb-space-16);
        padding-right: var(--hb-space-16);
    }

    .homepage-section-nav__links {
        gap: 0;
    }

    .featured-carousel {
        padding-bottom: var(--hb-space-32);
        padding-top: var(--hb-space-40);
    }

    .featured-product {
        --featured-card-gutter: var(--hb-space-24);
    }

    .featured-product__thumbnail-frame {
        height: 120px;
        min-height: 120px;
    }

    .featured-product__thumbnails {
        height: 96px;
        min-height: 96px;
    }

    .featured-product__thumbnail {
        flex-basis: 128px;
        height: 84px;
        max-height: 84px;
        min-width: 128px;
        width: 128px;
    }

    .featured-product__body {
        min-height: 320px;
    }
}

@media screen and (max-width: 736px) {
    .hyperbyte-banner h1 {
        font-size: var(--hb-font-32) !important;
        line-height: var(--hb-line-40);
    }

    .hyperbyte-banner .hero-title-main-inline {
        letter-spacing: var(--hb-space-4);
    }

    .hyperbyte-banner .actions.special {
        gap: var(--hb-space-12);
        width: min(100%, 288px);
    }

    .hero-scroll-cue {
        bottom: var(--hb-space-64);
    }

    .featured-carousel__heading h2,
    #products header.major h2,
    #main > header.help-hero h2,
    .help-hero h2 {
        font-size: var(--hb-font-24);
        line-height: var(--hb-line-32);
    }

    #products > .inner,
    .services-section > .inner,
    .testimonial-section > .inner,
    #why-hyperbyte > .inner,
    .help-shell,
    .support-shell {
        padding-left: var(--hb-space-16);
        padding-right: var(--hb-space-16);
    }

    #products > .inner,
    .help-shell,
    .support-shell {
        padding-bottom: var(--hb-space-48);
        padding-top: var(--hb-space-48);
        width: 100%;
    }

    .support-shell,
    .faq-layout {
        gap: var(--hb-space-32);
        grid-template-columns: minmax(0, 1fr);
    }

    .support-guidance,
    .support-faq-panel,
    .faq-group,
    .faq-list details,
    .faq-list summary,
    .faq-search,
    .faq-search input {
        max-width: 100%;
        min-width: 0;
    }

    .faq-group h3 {
        font-size: var(--hb-font-20);
        line-height: var(--hb-line-24);
    }

    .product-grid-content,
    .service-card,
    .testimonial-card,
    #why-hyperbyte .company-story-panel {
        padding: var(--hb-space-24);
    }

    .service-card {
        flex-basis: 100%;
    }

    .offer-section {
        display: block;
        height: auto;
        min-height: auto;
        overflow: hidden;
    }

    .offer-section .inner {
        box-sizing: border-box;
        max-width: 100%;
        padding-left: var(--hb-space-16);
        padding-right: var(--hb-space-16);
        width: 100%;
    }

    .offer-section h2 {
        white-space: normal;
    }

    .offer-grid {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .offer-card,
    .offer-card--wide {
        grid-column: auto;
        width: 100%;
    }

    .offer-scroll-cue {
        bottom: auto;
        left: auto;
        margin: 0 auto var(--hb-space-64);
        margin-left: auto;
        position: relative;
        transform: none;
    }
}

@media screen and (min-width: 737px) and (max-width: 1180px) {
    .service-card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none;
    }

    .hero-product-mosaic,
    .hyperbyte-banner h1,
    .hyperbyte-banner .hero-company-kicker,
    .hyperbyte-banner .hero-company-copy,
    .hyperbyte-banner .actions.special,
    .hero-scroll-cue {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .product-grid-card {
        transition: none;
    }

    .product-grid-card:hover,
    .product-grid-card:focus-within {
        opacity: 1;
        transform: none;
    }
}

/* Shared glass surface treatment across the site. */
:root {
    --hb-glass-bg: rgba(10, 16, 30, 0.2);
    --hb-glass-bg-featured: rgba(10, 16, 30, 0.12);
    --hb-glass-bg-raised: rgba(10, 16, 30, 0.3);
    --hb-glass-border: rgba(255, 255, 255, 0.1);
    --hb-glass-border-strong: rgba(126, 230, 222, 0.18);
    --hb-glass-shadow: 0 14px 34px rgba(4, 7, 16, 0.12);
    --hb-glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.product-grid-card,
.service-card,
.testimonial-card,
#why-hyperbyte .company-story-panel,
.support-form-card,
.support-guidance,
.help-cta,
.faq-list details,
.request-type-card span,
.footer-area-tabs,
.footer-area-panel {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: var(--hb-glass-bg);
    border-color: var(--hb-glass-border);
    box-shadow: var(--hb-glass-shadow), var(--hb-glass-highlight);
}

.featured-product {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
        var(--hb-glass-bg-featured);
    border-color: rgba(255, 255, 255, 0.075);
    box-shadow:
        0 20px 52px rgba(4, 7, 16, 0.14),
        var(--hb-glass-highlight);
}

.featured-product,
.product-grid-card,
.service-card,
.testimonial-card,
#why-hyperbyte .company-story-panel {
    contain: paint;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        var(--hb-glass-bg);
}

.product-grid-card:hover,
.product-grid-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.testimonial-card:hover,
.testimonial-card:focus-within,
.faq-list details[open],
.request-type-card input:checked + span {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        var(--hb-glass-bg-raised);
    border-color: var(--hb-glass-border-strong);
}

.featured-product__media-frame,
.featured-product__thumbnail-frame,
.featured-product__media,
.featured-product__thumbnail {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(6, 10, 20, 0.38);
    border-color: rgba(255, 255, 255, 0.11);
}

/* Performance: avoid live backdrop blurs on repeated animated surfaces. */
.featured-product,
.product-grid-card,
.service-card,
.testimonial-card,
#why-hyperbyte .company-story-panel,
.support-form-card,
.support-guidance,
.help-cta,
.faq-list details,
.request-type-card span,
.footer-area-tabs,
.footer-area-panel,
.featured-product__media-frame,
.featured-product__thumbnail-frame,
.featured-product__media,
.featured-product__thumbnail {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

.featured-product__media-frame,
.featured-product__thumbnail-frame {
    background-color: rgba(6, 10, 20, 0.16);
    border-color: rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.featured-product__media,
.featured-product__thumbnail {
    background-color: rgba(6, 10, 20, 0.12);
}

/* Extra-light glass for the featured carousel media wells. */
body.landing #featured .featured-product__media-frame,
body.landing #featured .featured-product__thumbnail-frame {
    background: rgba(6, 10, 20, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 38px rgba(4, 7, 16, 0.12) !important;
}

body.landing #featured .featured-product__media,
body.landing #featured .featured-product__thumbnail {
    background: transparent !important;
}

body.landing #featured .featured-product__thumbnail:not(.is-active) {
    opacity: 0.72;
}

body.landing #featured .featured-product__media-frame,
body.landing #featured .featured-product__media,
body.landing #featured .featured-product__thumbnail-frame,
body.landing #featured .featured-product__thumbnails {
    background-color: transparent !important;
}

body.landing #featured .featured-product__media-frame,
body.landing #featured .featured-product__thumbnail-frame {
    background-color: rgba(6, 10, 20, 0.08) !important;
}

body.landing #featured .featured-product__thumbnail-frame {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Home section refinement inspired by the offer cards. */
body.landing #featured,
body.landing #products,
body.landing #testimonials,
body.landing #why-hyperbyte,
body.landing #services,
body.landing #footer {
    --hb-home-card-bg: rgba(20, 31, 48, 1);
    --hb-home-card-bg-hover: rgba(26, 39, 59, 1);
    --hb-home-card-border: rgba(126, 230, 222, 0.2);
    --hb-home-card-border-hover: rgba(126, 230, 222, 0.36);
    --hb-home-card-shadow: 0 12px 28px rgba(5, 8, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --hb-home-card-shadow-hover: 0 14px 34px rgba(5, 8, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.landing #featured,
body.landing #testimonials,
body.landing #services {
    background:
        linear-gradient(180deg, rgba(126, 230, 222, 0.045), transparent 38%),
        #263342;
}

body.landing #products,
body.landing #why-hyperbyte {
    background:
        linear-gradient(180deg, rgba(126, 230, 222, 0.035), transparent 42%),
        #2d3650;
}

body.landing #footer {
    background:
        linear-gradient(180deg, #121a2a 0%, #0b1120 100%) !important;
    border-top: 1px solid rgba(126, 230, 222, 0.16);
}

body.help-page #footer {
    background:
        linear-gradient(180deg, #121a2a 0%, #0b1120 100%) !important;
    border-top: 1px solid rgba(126, 230, 222, 0.16);
    padding: var(--hb-space-24) var(--hb-space-24) var(--hb-space-24);
}

body.help-page #footer .footer-area-tabs {
    margin-top: 0;
    margin-bottom: var(--hb-space-24);
}

body.landing #featured header.major,
body.landing #products header.major,
body.landing #testimonials header.major,
body.landing #why-hyperbyte header.major,
body.landing #services header.major,
.featured-carousel__heading,
#footer .footer-support {
    border-left: 0;
    padding-left: 0;
}

body.landing #featured header.major h2,
body.landing #products header.major h2,
body.landing #testimonials header.major h2,
body.landing #why-hyperbyte header.major h2,
body.landing #services header.major h2,
.featured-carousel__heading h2,
#footer .footer-support h2 {
    letter-spacing: 0.18em;
}

.featured-product,
.product-grid-card,
.service-card,
.testimonial-card,
#why-hyperbyte .company-story-panel {
    background: var(--hb-home-card-bg) !important;
    border: solid 1px var(--hb-home-card-border) !important;
    box-shadow: var(--hb-home-card-shadow) !important;
    position: relative;
    transition:
        background 0.25s var(--hb-ease-smooth),
        border-color 0.25s var(--hb-ease-smooth),
        box-shadow 0.25s var(--hb-ease-smooth),
        transform 0.25s var(--hb-ease-smooth);
}

.product-grid-card:hover,
.product-grid-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.testimonial-card:hover,
.testimonial-card:focus-within,
#why-hyperbyte .company-story-panel:hover,
#why-hyperbyte .company-story-panel:focus-within {
    background: var(--hb-home-card-bg-hover) !important;
    border-color: var(--hb-home-card-border-hover) !important;
    box-shadow: var(--hb-home-card-shadow-hover) !important;
}

.service-card > .icon,
#why-hyperbyte .company-story-panel .icon.major,
.testimonial-card__rating,
.product-subtitle,
.featured-product__kicker {
    color: #7ee6de !important;
}

.service-card > .icon,
#why-hyperbyte .company-story-panel .icon.major {
    background: rgba(126, 230, 222, 0.14) !important;
    border: 1px solid rgba(126, 230, 222, 0.28);
}

.featured-carousel__footer,
.testimonial-section__source,
.services-section__cta {
    border-top: 1px solid rgba(126, 230, 222, 0.14);
    padding-top: var(--hb-space-24);
}

.footer-area-tabs {
    justify-content: center;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.footer-area-tabs a {
    background: rgba(20, 31, 48, 0.86);
    border-color: rgba(126, 230, 222, 0.18);
    box-shadow: 0 8px 18px rgba(5, 8, 18, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-area-tabs a:hover,
.footer-area-tabs a:focus-visible {
    background: rgba(26, 39, 59, 1);
    border-color: rgba(126, 230, 222, 0.35);
}

/* Cross-page visual alignment with the home card system. */
:root {
    --hb-solid-card-bg: rgba(20, 31, 48, 1);
    --hb-solid-card-bg-hover: rgba(26, 39, 59, 1);
    --hb-solid-card-border: rgba(126, 230, 222, 0.2);
    --hb-solid-card-border-hover: rgba(126, 230, 222, 0.36);
    --hb-solid-card-shadow: 0 12px 28px rgba(5, 8, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --hb-solid-card-shadow-hover: 0 14px 34px rgba(5, 8, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    --hb-subtle-isometric-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='112' viewBox='0 0 192 112'%3E%3Cg fill='none' stroke='%2372e5dc' stroke-width='1' stroke-opacity='.026'%3E%3Cpath d='M32 16l32 18.5v37L32 90.5 0 72V35z'/%3E%3Cpath d='M32 16v37l32 18.5M32 53L0 35M32 53v37.5'/%3E%3Cpath d='M96 16l32 18.5v37L96 90.5 64 72V35z'/%3E%3Cpath d='M96 16v37l32 18.5M96 53L64 35M96 53v37.5'/%3E%3Cpath d='M160 16l32 18.5v37l-32 19-32-18.5V35z'/%3E%3Cpath d='M160 16v37l32 18.5M160 53l-32-18M160 53v37.5'/%3E%3Cpath d='M64 72l32-19 32 19M128 35l32-19M64 35l32-19M0 72l32 18.5 32-18.5M128 72l32 18.5 32-18.5'/%3E%3C/g%3E%3Cg fill='none' stroke='%23a664ff' stroke-width='1' stroke-opacity='.018'%3E%3Cpath d='M0 16l32 18.5 32-18.5M32 34.5v37M64 16v37M96 90.5v21.5M128 72v40M160 90.5v21.5'/%3E%3C/g%3E%3C/svg%3E");
}

.help-page #main {
    background:
        linear-gradient(180deg, #121a2a 0%, #0b1120 100%);
    overflow-anchor: none;
}

body.help-page,
.help-page .help-shell,
.help-page .support-shell {
    overflow-anchor: none;
}

#main > header.help-hero,
.help-hero {
    background:
        radial-gradient(circle at 50% 0%, rgba(126, 230, 222, 0.075), transparent 28rem),
        linear-gradient(180deg, #202b3d 0%, #141e30 100%) !important;
    border-bottom: 1px solid rgba(126, 230, 222, 0.14);
}

.help-page .help-hero {
    overflow: hidden;
}

.help-page .help-hero > div {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.help-page .help-hero p,
.help-page .help-hero span {
    position: relative;
    z-index: 1;
}

.help-page .help-hero h2 {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding: var(--hb-space-12) var(--hb-space-24);
    position: relative;
}

.help-page .help-hero span {
    display: block;
    max-width: 760px;
}

.help-page .help-hero h2::before,
.help-page .help-hero h2::after {
    background: rgba(255, 255, 255, 0.82);
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    transition: width var(--hb-motion-hero-line) ease 0.25s;
    width: 100%;
}

.help-page .help-hero h2::before {
    left: 0;
    top: 0;
}

.help-page .help-hero h2::after {
    bottom: 0;
    right: 0;
}

body.is-preload.help-page .help-hero p,
body.is-preload.help-page .help-hero h2,
body.is-preload.help-page .help-hero span {
    opacity: 0;
    transform: translateY(1rem);
}

body.is-preload.help-page .help-hero h2::before,
body.is-preload.help-page .help-hero h2::after {
    width: 0;
}

body:not(.is-preload).help-page .help-hero p,
body:not(.is-preload).help-page .help-hero h2,
body:not(.is-preload).help-page .help-hero span {
    animation: hb-hero-fade-up 0.95s var(--hb-ease-smooth) both;
}

body:not(.is-preload).help-page .help-hero p {
    animation-delay: 0.05s;
}

body:not(.is-preload).help-page .help-hero h2 {
    animation-delay: 0.16s;
}

body:not(.is-preload).help-page .help-hero span {
    animation-delay: 0.42s;
}

.help-shell,
.support-shell {
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.help-shell::before,
.support-shell::before {
    background-image:
        var(--hb-subtle-isometric-pattern),
        linear-gradient(90deg, rgba(166, 100, 255, 0.01) 0%, rgba(114, 229, 220, 0.007) 48%, rgba(14, 181, 255, 0.012) 100%);
    background-position: center;
    background-size: 288px 168px, cover;
    content: '';
    inset: 0;
    opacity: 0.36;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.help-shell > *,
.support-shell > * {
    position: relative;
    z-index: 1;
}

.faq-search,
.faq-sidebar,
.support-guidance,
.support-navigator,
.support-form-card,
.help-cta,
.faq-list details,
.request-type-card span {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: var(--hb-solid-card-bg) !important;
    border: 1px solid var(--hb-solid-card-border) !important;
    border-radius: var(--hb-radius-8);
    box-shadow: var(--hb-solid-card-shadow) !important;
}

.faq-list details[open],
.request-type-card input:checked + span,
.support-guidance:hover,
.support-form-card:focus-within,
.help-cta:hover,
.help-cta:focus-within {
    background: var(--hb-solid-card-bg-hover) !important;
    border-color: var(--hb-solid-card-border-hover) !important;
    box-shadow: var(--hb-solid-card-shadow-hover) !important;
}

.faq-search {
    padding: var(--hb-space-24);
}

.support-navigator {
    margin: 0 0 var(--hb-space-24);
    padding: var(--hb-space-20) var(--hb-space-24) var(--hb-space-24);
}

.support-navigator__step + .support-navigator__step {
    border-top: 1px solid rgba(126, 230, 222, 0.08);
    margin-top: var(--hb-space-20);
    padding-top: var(--hb-space-20);
}

.support-navigator__step h3 {
    font-size: var(--hb-font-20);
    line-height: var(--hb-line-32);
    margin-bottom: var(--hb-space-16);
}

.support-choice-grid,
.support-topic-grid {
    display: grid;
    gap: var(--hb-space-12);
}

.support-choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
}

.support-choice,
.support-topic-grid button {
    appearance: none;
    background: var(--hb-solid-card-bg);
    border: 1px solid var(--hb-solid-card-border);
    border-radius: var(--hb-radius-8);
    box-shadow: var(--hb-solid-card-shadow);
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-weight: 400;
    height: auto;
    letter-spacing: 0 !important;
    line-height: var(--hb-line-20);
    min-width: 0;
    overflow: visible;
    padding: var(--hb-space-16) var(--hb-space-20);
    text-align: left;
    text-transform: none !important;
    transition:
        background 0.25s var(--hb-ease-smooth),
        border-color 0.25s var(--hb-ease-smooth),
        color 0.25s var(--hb-ease-smooth),
        transform 0.25s var(--hb-ease-smooth);
    width: 100%;
}

.support-choice:hover,
.support-choice:focus-visible,
.support-choice.is-active,
.support-topic-grid button:hover,
.support-topic-grid button:focus-visible,
.support-topic-grid button.is-active {
    background: var(--hb-solid-card-bg-hover);
    border-color: var(--hb-solid-card-border-hover);
    color: #ffffff;
    transform: translateY(-1px);
}

.support-choice strong {
    color: rgba(255, 255, 255, 0.92);
    display: block;
    font-size: var(--hb-font-14);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: var(--hb-line-20);
    margin-bottom: var(--hb-space-4);
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.support-choice span {
    color: rgba(255, 255, 255, 0.66);
    display: block;
    font-size: var(--hb-font-14);
    font-weight: 400;
    line-height: var(--hb-line-20);
    overflow-wrap: anywhere;
    white-space: normal;
}

.support-choice.is-active span,
.support-choice:hover span,
.support-choice:focus-visible span {
    color: rgba(255, 255, 255, 0.72);
}

.support-choice.is-active strong,
.support-choice:hover strong,
.support-choice:focus-visible strong {
    color: #ffffff;
}

.support-topic-grid {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    justify-content: start;
    max-width: none;
    width: 100%;
}

.support-topic-grid button {
    font-size: var(--hb-font-14);
    font-weight: 500;
    min-height: var(--hb-control-40);
    width: 100%;
}

.support-detail-panel {
    border-top: 1px solid rgba(126, 230, 222, 0.12);
    margin-top: var(--hb-space-20);
    padding-top: var(--hb-space-20);
}

.support-detail-panel h4 {
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--hb-font-16);
    letter-spacing: 0.12em;
    line-height: var(--hb-line-24);
    margin: 0 0 var(--hb-space-16);
    padding: 0;
    text-transform: uppercase;
}

.support-topic-grid--compact {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
}

.support-product-specific {
    border-top: 1px solid rgba(126, 230, 222, 0.08);
    margin: var(--hb-space-20) 0;
    padding-top: var(--hb-space-20);
}

.help-page .support-form-card--gated,
.support-guidance [data-open-support-form] {
    display: none !important;
}

.help-page .support-form-card--gated[style*="display"],
.help-page .support-form-card--gated:not([hidden]) {
    display: block !important;
}

.support-form-gate[hidden] {
    display: none !important;
}

.support-product-picker {
    display: block;
    font-size: var(--hb-font-12);
    letter-spacing: 0.12em;
    margin-bottom: var(--hb-space-16);
    max-width: none;
    position: relative;
    text-transform: uppercase;
    width: 100%;
}

.support-product-picker--custom {
    box-sizing: border-box;
    display: block;
    max-width: none !important;
    width: 100% !important;
}

.support-product-picker select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, rgba(126, 230, 222, 0.9) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
        linear-gradient(135deg, rgba(126, 230, 222, 0.9) 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
        rgba(8, 13, 24, 0.64) !important;
    border-color: rgba(126, 230, 222, 0.08) !important;
    border-radius: var(--hb-radius-8);
    box-shadow: inset 0 0 0 1px rgba(126, 230, 222, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    font-size: var(--hb-font-14);
    font-weight: 500;
    height: var(--hb-control-48);
    line-height: var(--hb-line-20);
    margin-top: var(--hb-space-8);
    padding-right: var(--hb-space-48);
    text-transform: none;
    transition:
        background-color 0.25s var(--hb-ease-smooth),
        border-color 0.25s var(--hb-ease-smooth),
        box-shadow 0.25s var(--hb-ease-smooth);
    width: 100%;
}

.support-product-picker select:hover,
.support-product-picker select:focus {
    border-color: rgba(126, 230, 222, 0.18) !important;
    box-shadow: inset 0 0 0 1px rgba(126, 230, 222, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-product-picker__label {
    color: rgba(126, 230, 222, 0.92);
    display: block;
    font-size: var(--hb-font-12);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: var(--hb-line-16);
    margin-bottom: var(--hb-space-8);
    text-transform: uppercase;
}

.support-product-picker__button {
    appearance: none;
    background: rgba(20, 31, 48, 0.82);
    border: 1px solid rgba(126, 230, 222, 0.08);
    border-radius: var(--hb-radius-8);
    box-shadow: inset 0 0 0 1px rgba(126, 230, 222, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: var(--hb-font-14);
    font-weight: 500;
    height: var(--hb-control-48);
    letter-spacing: 0;
    line-height: var(--hb-line-20);
    overflow: hidden;
    padding: 0 var(--hb-space-48) 0 var(--hb-space-16);
    position: relative;
    text-align: left;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
    max-width: none !important;
    min-width: 100%;
    width: 100%;
}

.support-product-picker__button::after {
    border-bottom: 1px solid #7ee6de;
    border-right: 1px solid #7ee6de;
    content: '';
    height: 8px;
    position: absolute;
    right: var(--hb-space-20);
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.25s var(--hb-ease-smooth);
    width: 8px;
}

.support-product-picker__button[aria-expanded="true"] {
    background: rgba(20, 31, 48, 0.94);
    border-color: rgba(126, 230, 222, 0.16);
    box-shadow: inset 0 0 0 1px rgba(126, 230, 222, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-product-picker__button[aria-expanded="true"]::after {
    transform: translateY(-35%) rotate(225deg);
}

.support-product-picker__menu {
    background: rgba(20, 31, 48, 0.98);
    border: 1px solid rgba(126, 230, 222, 0.08);
    border-radius: var(--hb-radius-8);
    box-shadow: 0 12px 26px rgba(3, 6, 14, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    left: 0;
    margin-top: var(--hb-space-8);
    max-height: 280px;
    overflow-y: auto;
    padding: var(--hb-space-8);
    position: absolute;
    right: 0;
    width: 100%;
    min-width: 100%;
    text-transform: none;
    top: 100%;
    z-index: 30;
}

.support-product-picker__menu button {
    appearance: none;
    background: transparent;
    border: 0 !important;
    border-radius: var(--hb-radius-4);
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.76);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: var(--hb-font-14);
    font-weight: 500;
    height: auto;
    letter-spacing: 0;
    line-height: var(--hb-line-20);
    padding: var(--hb-space-8) var(--hb-space-12);
    text-align: left;
    text-transform: none;
    width: 100%;
}

.support-product-picker__menu button:focus,
.support-product-picker__menu button:focus-visible {
    outline: 1px solid rgba(126, 230, 222, 0.34);
    outline-offset: -1px;
}

.support-product-picker__menu button:hover,
.support-product-picker__menu button:focus-visible,
.support-product-picker__menu button.is-active {
    background: rgba(126, 230, 222, 0.08);
    color: #ffffff;
}

.support-product-picker__menu button.is-active::before {
    color: #7ee6de;
    content: '✓';
    display: inline-block;
    margin-right: var(--hb-space-8);
}

.support-navigator__status {
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--hb-font-14);
    line-height: var(--hb-line-20);
    margin: 0;
}

.support-navigator__footer {
    align-items: center;
    display: flex;
    gap: var(--hb-space-16);
    justify-content: space-between;
    margin-top: var(--hb-space-12);
}

.support-followup {
    display: flex;
    justify-content: flex-end;
    margin: calc(-1 * var(--hb-space-8)) 0 var(--hb-space-24);
}

.support-inline-help {
    appearance: none;
    background: rgba(232, 72, 58, 0.92);
    border: 0 !important;
    border-radius: var(--hb-radius-4);
    box-shadow: 0 10px 22px rgba(232, 72, 58, 0.16);
    color: #ffffff;
    cursor: pointer;
    flex: 0 0 auto;
    font-family: inherit;
    font-size: var(--hb-font-12);
    font-weight: 700;
    height: var(--hb-control-40);
    letter-spacing: 0.12em;
    line-height: var(--hb-line-16);
    padding: 0 var(--hb-space-20);
    text-transform: uppercase;
    transition:
        background 0.25s var(--hb-ease-smooth),
        box-shadow 0.25s var(--hb-ease-smooth),
        transform 0.25s var(--hb-ease-smooth);
}

.support-inline-help:hover,
.support-inline-help:focus-visible {
    background: #ef493d;
    box-shadow: 0 12px 26px rgba(232, 72, 58, 0.22);
    transform: translateY(-1px);
}

@media screen and (max-width: 736px) {
    .support-followup {
        justify-content: stretch;
    }

    .support-followup .support-inline-help {
        width: 100%;
    }
}

.faq-search input,
.support-form-card input,
.support-form-card select,
.support-form-card textarea {
    background: rgba(8, 13, 24, 0.64) !important;
    border-color: rgba(126, 230, 222, 0.16) !important;
}

.footer-area-tabs {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.footer-area-tabs a {
    background: var(--hb-solid-card-bg) !important;
    border: 1px solid var(--hb-solid-card-border) !important;
    border-bottom: 1px solid var(--hb-solid-card-border) !important;
    box-shadow: 0 8px 18px rgba(5, 8, 18, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.footer-area-tabs a:hover,
.footer-area-tabs a:focus-visible {
    background: var(--hb-solid-card-bg-hover) !important;
    border-color: var(--hb-solid-card-border-hover) !important;
}

body.support-page .help-hero h2::before,
body.support-page .help-hero h2::after,
body.landing #banner.hyperbyte-banner h1::before,
body.landing #banner.hyperbyte-banner h1::after,
body.landing .offer-section h2::before,
body.landing .offer-section h2::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72) 18%, rgba(255, 255, 255, 0.72) 82%, transparent);
    height: 1px;
}

/* Support page layout correction. */
.support-shell.support-shell--faq-first {
    align-items: start;
    column-gap: 0;
    grid-template-columns: minmax(0, 1fr);
    max-width: min(118rem, calc(100vw - 4rem));
}

.support-shell.support-shell--faq-first .support-guidance {
    align-self: start;
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    position: static !important;
    top: auto;
    width: 100%;
}

.support-shell.support-shell--faq-first .support-faq-panel {
    align-self: start;
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    width: 100%;
}

.support-shell.support-shell--faq-first .support-form-card {
    grid-column: 1;
    width: 100%;
}

.support-shell.support-shell--faq-first .faq-search {
    box-sizing: border-box;
    margin: 0 0 var(--hb-space-24);
    max-width: none;
    width: 100%;
}

.support-shell.support-shell--faq-first .faq-group:first-of-type {
    margin-top: 0;
}

@media screen and (max-width: 980px) {
    .support-shell.support-shell--faq-first {
        grid-template-columns: 1fr;
        max-width: min(var(--hb-site-max), calc(100vw - 2rem));
    }

    .support-shell.support-shell--faq-first .support-guidance,
    .support-shell.support-shell--faq-first .support-faq-panel {
        grid-column: 1;
        position: static;
    }

    .support-choice-grid,
    .support-topic-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .support-topic-grid button,
    .support-topic-grid--compact button {
        width: 100%;
    }

    .support-topic-grid,
    .support-topic-grid--compact {
        max-width: none;
    }
}

/* Compact FAQ/support rhythm. */
.support-shell.support-shell--faq-first {
    row-gap: var(--hb-space-32);
}

.support-shell.support-shell--faq-first .support-guidance,
.support-shell.support-shell--faq-first .faq-search {
    padding: var(--hb-space-20);
}

.support-shell.support-shell--faq-first .support-guidance h3 {
    margin-bottom: var(--hb-space-16);
}

.support-shell.support-shell--faq-first .support-direct {
    display: none;
}

.support-journey {
    counter-reset: support-step;
    display: grid;
    gap: var(--hb-space-12);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: var(--hb-space-16) 0 0;
    padding: 0;
}

.support-journey li {
    align-items: flex-start;
    background: rgba(8, 13, 24, 0.34);
    border: 1px solid rgba(126, 230, 222, 0.12);
    border-radius: var(--hb-radius-8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    display: flex;
    gap: var(--hb-space-12);
    margin: 0;
    min-height: 100%;
    padding: var(--hb-space-16);
}

.support-journey span {
    align-items: center;
    background: rgba(126, 230, 222, 0.13);
    border: 1px solid rgba(126, 230, 222, 0.28);
    border-radius: 50%;
    color: #7ee6de;
    display: flex;
    flex: 0 0 var(--hb-space-32);
    font-size: var(--hb-font-12);
    font-weight: 700;
    height: var(--hb-space-32);
    justify-content: center;
    line-height: var(--hb-line-16);
}

.support-journey strong {
    color: rgba(255, 255, 255, 0.88);
    display: block;
    font-size: var(--hb-font-14);
    line-height: var(--hb-line-20);
    margin: 0 0 var(--hb-space-4);
}

.support-journey p {
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--hb-font-14);
    line-height: var(--hb-line-20);
    margin: 0;
}

@media screen and (max-width: 980px) {
    .support-journey {
        grid-template-columns: 1fr;
    }
}

.support-shell.support-shell--faq-first .faq-group {
    margin-bottom: var(--hb-space-48);
}

.support-shell.support-shell--faq-first .faq-list details {
    margin-bottom: var(--hb-space-8);
    overflow: hidden;
}

.support-shell.support-shell--faq-first .faq-list summary {
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: var(--hb-line-20);
    min-height: 0;
    padding: 10px var(--hb-space-48) 10px var(--hb-space-20);
}

.support-shell.support-shell--faq-first .faq-list summary::after {
    align-items: center;
    display: flex;
    font-size: 18px;
    height: var(--hb-space-24);
    justify-content: center;
    line-height: 1;
    right: var(--hb-space-20);
    top: 50%;
    transform: translateY(-50%);
    width: var(--hb-space-24);
}

.support-shell.support-shell--faq-first .faq-list details > div {
    color: rgba(255, 255, 255, 0.66);
    font-size: var(--hb-font-16);
    line-height: var(--hb-line-24);
    padding: 0 var(--hb-space-20) var(--hb-space-20);
}

.support-shell.support-shell--faq-first .faq-list details[open] > div {
    animation: supportFaqReveal 0.12s ease-out both;
}

@keyframes supportFaqReveal {
    from {
        opacity: 0.72;
        transform: translateY(-2px);
    }

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

.support-shell.support-shell--faq-first .faq-group h3 {
    color: rgba(255, 255, 255, 0.84);
    font-size: var(--hb-font-16);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: var(--hb-line-24);
    margin-bottom: var(--hb-space-16);
}

/* Support page visual hierarchy pass. */
.help-page .support-shell.support-shell--faq-first {
    row-gap: var(--hb-space-24);
}

.help-page .support-shell.support-shell--faq-first .support-guidance {
    background:
        linear-gradient(90deg, rgba(126, 230, 222, 0.08), rgba(126, 230, 222, 0.02) 42%, rgba(232, 72, 58, 0.045)) !important;
    border-color: rgba(126, 230, 222, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;
    padding: var(--hb-space-20);
}

.help-page .support-shell.support-shell--faq-first .support-guidance h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--hb-font-18);
    line-height: var(--hb-line-24);
    margin-bottom: var(--hb-space-12);
}

.help-page .support-journey {
    gap: var(--hb-space-16);
    margin-top: var(--hb-space-12);
}

.help-page .support-journey li {
    align-items: center;
    background: rgba(8, 13, 24, 0.28);
    border-color: rgba(126, 230, 222, 0.095);
    box-shadow: none;
    display: grid;
    grid-template-columns: var(--hb-space-48) minmax(0, 1fr);
    min-height: 84px;
    padding: var(--hb-space-16);
}

.help-page .support-journey span {
    align-self: center;
    background: rgba(126, 230, 222, 0.1);
    border-color: rgba(126, 230, 222, 0.22);
    border-radius: var(--hb-radius-8);
    flex-basis: var(--hb-space-48);
    font-size: var(--hb-font-18);
    height: var(--hb-space-48);
    place-self: center;
    width: var(--hb-space-48);
}

.help-page .support-navigator {
    background:
        radial-gradient(circle at 8% 8%, rgba(126, 230, 222, 0.075), transparent 22rem),
        linear-gradient(180deg, rgba(20, 31, 48, 1), rgba(14, 24, 39, 1)) !important;
    border-color: rgba(126, 230, 222, 0.22) !important;
    box-shadow: 0 18px 42px rgba(3, 6, 14, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.065) !important;
    padding: var(--hb-space-24);
}

.help-page .support-navigator__step + .support-navigator__step {
    border-top-color: rgba(126, 230, 222, 0.12);
    margin-top: var(--hb-space-24);
    padding-top: var(--hb-space-24);
}

.help-page .support-navigator__step h3 {
    color: rgba(255, 255, 255, 0.96);
    font-size: var(--hb-font-24);
    line-height: var(--hb-line-32);
    margin-bottom: var(--hb-space-20);
}

.help-page .support-choice-grid {
    gap: var(--hb-space-16);
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    justify-items: stretch;
    max-width: none;
    width: 100%;
}

.help-page .support-choice {
    align-items: center;
    background: rgba(31, 46, 68, 0.72);
    border-color: rgba(126, 230, 222, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
    box-sizing: border-box;
    column-gap: var(--hb-space-16);
    display: grid;
    grid-template-columns: var(--hb-space-48) minmax(0, 1fr);
    justify-content: start;
    min-height: 82px;
    max-width: none;
    padding: var(--hb-space-16) var(--hb-space-20);
    position: relative;
    width: 100%;
}

.help-page .support-choice__icon {
    align-self: center;
    align-items: center;
    background: rgba(126, 230, 222, 0.1);
    border: 1px solid rgba(126, 230, 222, 0.22);
    border-radius: var(--hb-radius-8);
    color: #7ee6de;
    display: flex !important;
    font-size: var(--hb-font-18);
    height: var(--hb-space-48);
    justify-content: center;
    line-height: 1;
    margin: 0;
    place-self: center;
    width: var(--hb-space-48);
}

.help-page .support-choice__copy {
    display: block;
    min-width: 0;
    align-self: center;
}

.help-page .support-choice.is-active {
    background: rgba(36, 55, 78, 0.9);
}

.help-page .support-choice:hover .support-choice__icon,
.help-page .support-choice:focus-visible .support-choice__icon,
.help-page .support-choice.is-active .support-choice__icon {
    background: rgba(126, 230, 222, 0.16);
    border-color: rgba(126, 230, 222, 0.34);
}

.help-page .support-topic-grid {
    column-gap: var(--hb-space-12);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: stretch;
    row-gap: var(--hb-space-12);
    width: 100%;
}

.help-page .support-topic-grid button {
    background: rgba(9, 16, 29, 0.34);
    border-color: rgba(126, 230, 222, 0.13);
    box-sizing: border-box;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.76);
    display: block;
    max-width: none;
    min-height: 54px;
    width: 100%;
}

.help-page .support-topic-grid button:hover,
.help-page .support-topic-grid button:focus-visible,
.help-page .support-topic-grid button.is-active {
    background: rgba(126, 230, 222, 0.09);
    border-color: rgba(126, 230, 222, 0.32);
}

.help-page .support-product-picker__button,
.help-page .support-product-picker__menu {
    background-color: rgba(7, 13, 24, 0.68);
    border-color: rgba(126, 230, 222, 0.14);
}

.help-page .support-followup {
    align-items: center;
    background: rgba(8, 13, 24, 0.34);
    border: 1px solid rgba(232, 72, 58, 0.16);
    border-radius: var(--hb-radius-8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    gap: var(--hb-space-16);
    justify-content: space-between;
    margin: calc(-1 * var(--hb-space-16)) 0 var(--hb-space-24);
    padding: var(--hb-space-16);
}

.help-page .support-followup p {
    color: rgba(255, 255, 255, 0.58);
    font-size: var(--hb-font-14);
    line-height: var(--hb-line-20);
    margin: 0;
}

.help-page .support-followup strong {
    color: rgba(255, 255, 255, 0.88);
    margin-right: var(--hb-space-8);
}

.help-page .support-followup span {
    color: rgba(255, 255, 255, 0.58);
}

.help-page .faq-search {
    background: rgba(8, 13, 24, 0.42) !important;
    border-color: rgba(126, 230, 222, 0.12) !important;
    box-shadow: none !important;
    overflow-anchor: none;
}

.help-page .faq-search label {
    color: rgba(126, 230, 222, 0.92);
    display: block;
    font-size: var(--hb-font-12);
    font-weight: 700;
    line-height: var(--hb-line-16);
    margin: 0 0 var(--hb-space-8);
}

.help-page .faq-search input {
    appearance: none;
    background: rgba(7, 13, 24, 0.68) !important;
    border: 1px solid rgba(126, 230, 222, 0.14) !important;
    border-radius: var(--hb-radius-8);
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    font-size: var(--hb-font-14);
    font-weight: 500;
    height: var(--hb-control-48);
    letter-spacing: 0;
    line-height: var(--hb-line-20);
    margin: 0;
    padding: 0 var(--hb-space-16);
    text-transform: none;
    width: 100%;
}

.help-page .faq-search input::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.help-page .faq-search input:focus {
    border-color: rgba(126, 230, 222, 0.32) !important;
    box-shadow: inset 0 0 0 1px rgba(126, 230, 222, 0.14);
}

.help-page .support-shell.support-shell--faq-first .faq-group {
    background: transparent;
    margin-bottom: var(--hb-space-40);
    overflow-anchor: none;
}

.help-page .support-shell.support-shell--faq-first .faq-list details {
    background: rgba(14, 24, 39, 0.74) !important;
    border-color: rgba(126, 230, 222, 0.12) !important;
    box-shadow: none !important;
}

.help-page .support-shell.support-shell--faq-first .faq-list details[open] {
    background: rgba(18, 31, 49, 0.9) !important;
    border-color: rgba(126, 230, 222, 0.24) !important;
}

.help-page .support-shell {
    padding-bottom: var(--hb-space-64);
}

@media screen and (max-width: 736px) {
    .help-page .support-navigator {
        padding: var(--hb-space-20);
    }

    .help-page .support-choice-grid {
        max-width: none;
    }

    .help-page .support-followup {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Support page pathfinder redesign. */
.support-page .support-shell.support-shell--faq-first {
    max-width: min(96rem, calc(100vw - 4rem));
    padding-top: var(--hb-space-28);
    row-gap: var(--hb-space-28);
}

.support-page .support-faq-panel {
    display: block;
    min-height: 820px;
}

.support-page .support-navigator {
    background:
        linear-gradient(135deg, rgba(126, 230, 222, 0.07), transparent 22rem),
        linear-gradient(180deg, rgba(20, 31, 48, 1), rgba(15, 25, 40, 1)) !important;
    border-color: rgba(126, 230, 222, 0.18) !important;
    border-radius: var(--hb-radius-8);
    box-shadow: 0 20px 48px rgba(2, 5, 12, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
    overflow: hidden;
    padding: clamp(var(--hb-space-22), 2.4vw, var(--hb-space-28)) !important;
    position: relative;
}

.support-page .support-navigator::before {
    background: linear-gradient(180deg, #7ee6de, rgba(126, 230, 222, 0.08));
    content: '';
    height: calc(100% - var(--hb-space-40));
    left: 0;
    opacity: 0.22;
    position: absolute;
    top: var(--hb-space-20);
    width: 1px;
}

.support-page .support-navigator__step {
    position: relative;
}

.support-page .support-navigator__step + .support-navigator__step {
    border-top: 1px solid rgba(126, 230, 222, 0.1);
    margin-top: var(--hb-space-28);
    padding-top: var(--hb-space-28);
}

.support-page .support-navigator__step h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    letter-spacing: 0.14em;
    line-height: 1.18;
    margin-bottom: var(--hb-space-18);
    max-width: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.support-page .support-choice-grid {
    column-gap: var(--hb-space-24) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: var(--hb-space-16) !important;
}

.support-page .support-choice {
    background: rgba(26, 39, 59, 0.86);
    border-radius: var(--hb-radius-8);
    border-color: rgba(126, 230, 222, 0.18);
    min-height: 72px;
    padding: var(--hb-space-12) var(--hb-space-16);
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.support-page .support-choice::after {
    display: none;
}

.support-page .support-choice:hover,
.support-page .support-choice:focus-visible,
.support-page .support-choice.is-active {
    background: rgba(31, 48, 70, 1);
    border-color: rgba(126, 230, 222, 0.32);
    box-shadow: 0 12px 28px rgba(3, 6, 14, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.support-page .support-choice__icon {
    background: rgba(126, 230, 222, 0.09);
    border-color: rgba(126, 230, 222, 0.24);
    height: var(--hb-control-40);
    width: var(--hb-control-40);
}

.support-page .support-choice strong {
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: 0.16em;
}

.support-page .support-choice span span {
    color: rgba(255, 255, 255, 0.64);
}

.support-page .support-product-picker {
    background: rgba(8, 13, 24, 0.28);
    border: 1px solid rgba(126, 230, 222, 0.1);
    border-radius: var(--hb-radius-8);
    margin-bottom: var(--hb-space-18);
    padding: var(--hb-space-14);
}

.support-page .support-product-picker__button {
    background: rgba(9, 16, 29, 0.8) !important;
    border-color: rgba(126, 230, 222, 0.18) !important;
}

.support-page .support-product-picker__menu {
    border-color: rgba(126, 230, 222, 0.18) !important;
    box-shadow: 0 18px 34px rgba(1, 4, 10, 0.34);
}

.support-page .support-topic-grid {
    gap: var(--hb-space-12);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-page .support-topic-grid button {
    align-items: center;
    background: rgba(9, 16, 29, 0.48);
    border-color: rgba(126, 230, 222, 0.12);
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    font-size: var(--hb-font-14);
    font-weight: 600;
    justify-content: flex-start;
    letter-spacing: 0;
    min-height: 62px;
    padding: var(--hb-space-14) var(--hb-space-16);
    position: relative;
    text-align: left;
    text-transform: none;
}

.support-page .support-topic-grid button::before {
    background: rgba(126, 230, 222, 0.72);
    border-radius: 50%;
    content: '';
    flex: 0 0 6px;
    height: 6px;
    margin-right: var(--hb-space-12);
    opacity: 0.45;
    width: 6px;
}

.support-page .support-topic-grid button:hover,
.support-page .support-topic-grid button:focus-visible,
.support-page .support-topic-grid button.is-active {
    background: rgba(31, 48, 70, 0.9);
    border-color: rgba(126, 230, 222, 0.3);
    color: rgba(255, 255, 255, 0.92);
    transform: none;
}

.support-page .support-topic-grid button.is-active::before {
    background: #ef493d;
    opacity: 1;
}

.support-page .support-product-specific {
    border-top: 1px solid rgba(126, 230, 222, 0.1);
    margin-top: var(--hb-space-22);
    padding-top: var(--hb-space-22);
}

.support-page .support-detail-panel {
    background: rgba(8, 13, 24, 0.24);
    border: 1px solid rgba(126, 230, 222, 0.1);
    border-radius: var(--hb-radius-8);
    margin-top: var(--hb-space-16);
    padding: var(--hb-space-18);
}

.support-page .support-followup {
    background:
        linear-gradient(90deg, rgba(232, 72, 58, 0.09), rgba(8, 13, 24, 0.42) 32%, rgba(8, 13, 24, 0.42));
    border-color: rgba(232, 72, 58, 0.22);
    margin: var(--hb-space-18) 0 var(--hb-space-28);
    min-height: 56px;
    padding: var(--hb-space-12) var(--hb-space-16);
}

.support-page .support-followup strong {
    color: rgba(255, 255, 255, 0.94);
}

.support-page .support-inline-help {
    box-shadow: 0 10px 22px rgba(232, 72, 58, 0.16);
    min-width: 12rem;
}

.support-page .faq-search {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(31, 48, 70, 0.86), rgba(20, 31, 48, 0.92)) !important;
    border: 1px solid rgba(126, 230, 222, 0.22) !important;
    border-radius: var(--hb-radius-8);
    box-shadow: 0 12px 28px rgba(3, 6, 14, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
    display: flex;
    gap: var(--hb-space-16);
    margin: 0 0 var(--hb-space-16) !important;
    padding: var(--hb-space-10) var(--hb-space-12) !important;
}

.support-page .faq-search label {
    flex: 0 0 auto;
    margin: 0;
    white-space: nowrap;
}

.support-page .faq-search input {
    flex: 1 1 auto;
    height: var(--hb-control-40);
    min-width: 0;
}

.support-page .faq-search p {
    flex: 0 0 auto;
    margin: 0;
    white-space: nowrap;
}

.support-page .support-shell.support-shell--faq-first .faq-group {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    width: 100%;
}

.support-page .support-shell.support-shell--faq-first .faq-group h3 {
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--hb-font-18);
    letter-spacing: 0.08em;
    margin-bottom: var(--hb-space-18);
}

.support-page .support-shell.support-shell--faq-first .faq-list {
    display: grid;
    gap: var(--hb-space-8);
}

.support-page .support-shell.support-shell--faq-first .faq-list details {
    background: rgba(20, 31, 48, 0.94) !important;
    border-color: rgba(126, 230, 222, 0.14) !important;
    margin-bottom: 0;
}

.support-page .support-shell.support-shell--faq-first .faq-list details[open] {
    background: rgba(24, 37, 55, 1) !important;
    border-color: rgba(126, 230, 222, 0.28) !important;
}

.support-page .support-shell.support-shell--faq-first .faq-list summary {
    color: rgba(255, 255, 255, 0.88);
    min-height: 38px;
    padding-bottom: var(--hb-space-8);
    padding-top: var(--hb-space-8);
}

.support-page .support-shell.support-shell--faq-first .faq-list details > div {
    color: rgba(255, 255, 255, 0.64);
    padding-bottom: var(--hb-space-16);
}

.support-page .support-form-card--gated {
    background:
        linear-gradient(180deg, rgba(20, 31, 48, 1), rgba(14, 24, 39, 1));
    border-color: rgba(126, 230, 222, 0.2);
}

.support-page .support-form-card--gated {
    margin-top: var(--hb-space-16);
    padding: var(--hb-space-14) clamp(var(--hb-space-24), 3vw, var(--hb-space-40)) var(--hb-space-24);
    position: relative;
    scroll-margin-top: 6rem;
}

.support-page .support-followup[hidden],
.support-page .support-form-card--gated[hidden] {
    display: none !important;
}

.support-page .support-product-field[hidden],
.support-page .support-context-field[hidden],
.support-page .post-purchase-field[hidden] {
    display: none !important;
}

.support-page .support-form-card__heading {
    align-items: center;
    border-bottom: 1px solid rgba(126, 230, 222, 0.12);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    margin-bottom: var(--hb-space-16);
    min-height: var(--hb-space-28);
    padding-bottom: var(--hb-space-10);
}

.support-page .support-form-card__heading .section-eyebrow {
    grid-column: 1;
    margin: 0;
}

.support-page .support-form-card__heading h3 {
    align-items: center;
    display: flex;
    font-size: clamp(0.9rem, 1.05vw, 1.05rem);
    grid-column: 2;
    justify-content: center;
    letter-spacing: 0.12em;
    line-height: 1;
    margin: 0;
    min-height: var(--hb-space-28);
    padding: 0 var(--hb-space-48);
    text-align: center;
    width: 100%;
}

.support-page .support-form-close {
    align-items: center;
    background: transparent;
    border: 1px solid transparent !important;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    display: grid;
    flex: 0 0 auto;
    font-size: 0;
    height: 32px !important;
    justify-content: center;
    line-height: 1;
    padding: 0;
    place-items: center;
    position: absolute;
    box-shadow: none !important;
    right: var(--hb-space-28);
    top: var(--hb-space-14);
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
    min-width: 32px;
    opacity: 0.78;
    width: 32px !important;
}

.support-page .support-form-close::before,
.support-page .support-form-close::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: center;
    width: 11px;
}

.support-page .support-form-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.support-page .support-form-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.support-page .support-form-close:hover,
.support-page .support-form-close:focus-visible {
    background: rgba(8, 13, 24, 0.34);
    border-color: rgba(126, 230, 222, 0.12) !important;
    color: rgba(255, 255, 255, 0.64);
    opacity: 1;
}

.support-page .support-form-card fieldset {
    margin: 0 0 var(--hb-space-24);
}

.support-page .support-form-card form {
    margin-bottom: 0;
}

.support-page .support-form-card legend {
    color: var(--hb-cyan);
    font-size: var(--hb-font-12);
    font-weight: 800;
    letter-spacing: 0.16em;
    margin: 0 0 var(--hb-space-12);
    text-transform: uppercase;
}

.support-page .request-type-grid {
    gap: var(--hb-space-12);
}

.support-page .request-type-card span {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0)),
        rgba(12, 20, 35, 0.74) !important;
    border-color: rgba(126, 230, 222, 0.16) !important;
    border-radius: var(--hb-radius-8);
    min-height: 74px;
    padding: var(--hb-space-14) var(--hb-space-16);
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.support-page .request-type-card strong {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--hb-font-12);
    letter-spacing: 0.16em;
    line-height: 1.2;
}

.support-page .request-type-card small {
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--hb-font-13);
    line-height: 1.45;
    margin-top: var(--hb-space-8);
}

.support-page .request-type-card input:checked + span {
    background:
        linear-gradient(180deg, rgba(126, 230, 222, 0.08), rgba(126, 230, 222, 0.02)),
        rgba(18, 32, 50, 0.98) !important;
    border-color: rgba(126, 230, 222, 0.36) !important;
    box-shadow:
        0 12px 24px rgba(3, 6, 14, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

.support-page .form-grid {
    gap: var(--hb-space-16);
}

.support-page .form-grid label {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.support-page .support-form-card input,
.support-page .support-form-card select,
.support-page .support-form-card textarea {
    background: rgba(8, 13, 24, 0.72) !important;
    border: 1px solid rgba(126, 230, 222, 0.18) !important;
    border-radius: var(--hb-radius-8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    min-height: 46px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.support-page .support-form-card textarea {
    line-height: 1.6;
    min-height: 150px;
}

.support-page .support-form-card input:focus,
.support-page .support-form-card select:focus,
.support-page .support-form-card textarea:focus {
    background: rgba(10, 17, 31, 0.92) !important;
    border-color: rgba(126, 230, 222, 0.42) !important;
    box-shadow: 0 0 0 3px rgba(126, 230, 222, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-page .form-grid label small {
    color: rgba(255, 255, 255, 0.22);
    text-align: right;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.support-page .support-form-card .button.primary.fit {
    align-items: center;
    display: flex;
    height: var(--hb-control-40);
    justify-content: center;
    line-height: 1;
    margin-top: var(--hb-space-12);
    margin-left: auto;
    width: fit-content;
}

.support-page .support-form-card .support-submit-label {
    display: block;
    line-height: 1;
    transform: translateY(1px);
}

.support-page .form-notice {
    border-radius: var(--hb-radius-8);
    margin-bottom: var(--hb-space-20);
}

@media screen and (max-width: 980px) {
    .support-page .support-shell.support-shell--faq-first {
        max-width: min(var(--hb-site-max), calc(100vw - 2rem));
    }

    .support-page .support-choice-grid,
    .support-page .support-topic-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 736px) {
    .support-page .support-followup {
        align-items: stretch;
    }

    .support-page .faq-search {
        align-items: stretch;
        flex-direction: column;
        gap: var(--hb-space-8);
    }
}

body.support-page .support-shell.support-shell--faq-first {
    padding-top: var(--hb-space-24) !important;
}

body.support-page .support-choice-grid {
    column-gap: var(--hb-space-24) !important;
}
