@font-face {
    font-family: "Avenir";
    src: url("/fonts/Avenir-Book.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir";
    src: url("/fonts/Avenir-Regular.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir";
    src: url("/fonts/Avenir-Heavy.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir";
    src: url("/fonts/Avenir-Black.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HandOfSeanDemo";
    src: url("/fonts/HandOfSeanDemo.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --orya-blue: #2a4ca8;
    --orya-deep-blue: #21398e;
    --orya-sky: #57c6ea;
    --orya-sky-soft: #8cdcf0;
    --orya-lime: #c8f43d;
    --orya-green: #259844;
    --orya-yellow: #fff063;
    --orya-text: #28459d;
    --orya-muted: #79c9dc;
    --orya-shadow: 0 24px 48px rgba(31, 65, 133, 0.16);
}

html {
    scroll-behavior: smooth;
}

body.orya-shell {
    --site-content-width: min(78vw, 1180px);
    --site-header-offset: clamp(7.8rem, 9.8vw, 8.4rem);
    font-family: "Avenir", "Segoe UI", sans-serif;
    color: var(--orya-text);
    background:
        radial-gradient(circle at top left, rgba(87, 198, 234, 0.2), transparent 24%),
        linear-gradient(180deg, #fefefe 0%, #f7fbff 100%);
}

.orya-main {
    overflow: clip;
    padding-top: var(--site-header-offset);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0;
    background: transparent;
}

.site-header.is-condensed {
    padding: 0;
}

.site-header__bar {
    background: linear-gradient(180deg, rgba(87, 199, 234, 0.96) 0%, rgba(76, 194, 232, 0.94) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 22px rgba(14, 38, 96, 0.16);
}

.site-header__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.4rem;
    min-height: 84px;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.site-header__logo {
    position: absolute;
    left: clamp(0.25rem, 1vw, 1rem);
    top: 0.1rem;
    width: clamp(118px, 13vw, 188px);
    transform: translateY(10px);
    z-index: 3;
}

.site-header__logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 26px rgba(26, 46, 110, 0.22));
}

.site-header__bar,
.site-header__nav,
.site-header__logo,
.site-header__panel,
.site-nav__link,
.site-search,
.site-search__field,
.site-header__menu-toggle {
    transition:
        min-height 0.22s ease,
        padding 0.22s ease,
        gap 0.22s ease,
        width 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease,
        font-size 0.22s ease;
}

.site-header.is-condensed .site-header__bar {
    box-shadow: 0 8px 16px rgba(14, 38, 96, 0.14);
}

.site-header.is-condensed .site-header__nav {
    min-height: 72px;
    padding-top: 0.18rem;
    padding-bottom: 0.18rem;
}

.site-header.is-condensed .site-header__logo {
    width: clamp(106px, 11.5vw, 156px);
    transform: translateY(6px);
}

.site-header.is-condensed .site-header__panel {
    gap: clamp(0.8rem, 1.2vw, 1.2rem);
    padding-left: clamp(7.2rem, 12vw, 11.8rem);
}

.site-header.is-condensed .site-nav__link {
    padding: 0.14rem 0;
    font-size: 0.74rem;
}

.site-header.is-condensed .site-search {
    width: min(190px, 24vw);
}

.site-header.is-condensed .site-search__field {
    min-height: 30px;
    padding: 0.2rem 0.42rem 0.2rem 0.82rem;
}

.site-header.is-condensed .site-header__menu-toggle {
    padding-block: 0.46rem;
}

.site-header__panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 1.5vw, 1.6rem);
    width: 100%;
    padding-left: clamp(8.2rem, 14vw, 14rem);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 1.2vw, 1.25rem);
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0;
    border-radius: 0;
    position: relative;
    color: var(--orya-deep-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-transform: uppercase;
    text-decoration: none;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: var(--orya-lime);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-current::after {
    transform: scaleX(1);
}

.site-nav__link--disabled {
    opacity: 0.45;
}

.site-search {
    position: relative;
    width: min(210px, 28vw);
}

.site-search__field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 32px;
    padding: 0.25rem 0.45rem 0.25rem 0.95rem;
    background: #fff;
    border: 1px solid rgba(26, 48, 112, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(42, 76, 168, 0.12);
}

.site-search__field input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #2c3362;
    font-size: 0.88rem;
    background: transparent;
}

.site-search__field input::placeholder {
    color: #4f537f;
}

.site-search__field button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    color: #111;
    background: transparent;
}

.site-search__field svg {
    width: 18px;
    height: 18px;
}

.site-search__results {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(340px, 88vw);
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: var(--orya-shadow);
}

.site-search__result {
    display: grid;
    gap: 0.15rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    color: var(--orya-text);
    text-decoration: none;
}

.site-search__result:hover {
    background: rgba(87, 198, 234, 0.12);
}

.site-search__result-title {
    font-weight: 700;
}

.site-search__result-subtitle,
.site-search__empty {
    color: #6683ab;
    font-size: 0.9rem;
}

.site-header__menu-toggle {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    border: 0;
    color: #183686;
    background: transparent;
    font-weight: 700;
}

.site-header__menu-toggle-icon {
    display: grid;
    gap: 4px;
}

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

.site-footer {
    margin-top: 2rem;
}

.site-footer__band {
    position: relative;
    overflow: hidden;
    padding: 1rem 0 0.8rem;
    background:
        radial-gradient(circle at top right, rgba(200, 244, 61, 0.14), transparent 22%),
        radial-gradient(circle at bottom left, rgba(33, 57, 142, 0.12), transparent 26%),
        linear-gradient(180deg, #52c8ec 0%, #59c6e8 52%, #56bddf 100%);
}

.site-footer__band::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(100% - clamp(2rem, 6vw, 5rem));
    height: 0.2rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(33, 57, 142, 0.95), rgba(91, 201, 232, 0.92), rgba(200, 244, 61, 0.96));
}

.site-footer__band::after {
    content: "";
    position: absolute;
    right: -3.5rem;
    bottom: -5.5rem;
    width: 14rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.site-footer__shell {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-inline: clamp(1rem, 2.6vw, 2.4rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}

.site-footer__brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    color: #fff;
    min-width: 0;
    text-decoration: none;
}

.site-footer__brand-mark {
    display: grid;
    place-items: center;
    width: clamp(3.8rem, 5vw, 4.7rem);
    aspect-ratio: 1 / 1;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
    box-shadow:
        0 14px 26px rgba(20, 40, 92, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.site-footer__brand-mark img {
    width: 82%;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(26, 46, 110, 0.14));
}

.site-footer__brand-copy {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.site-footer__eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    background: rgba(33, 57, 142, 0.18);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__brand-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 1.9vw, 1.95rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.site-footer__grid {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(17rem, 1.25fr) minmax(9rem, 0.72fr) minmax(15rem, 1fr) minmax(11rem, 0.8fr);
    gap: clamp(0.65rem, 1.4vw, 1rem);
    align-items: start;
}

.site-footer__section {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    min-width: 0;
    align-self: start;
    padding: 0.95rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.08));
    box-shadow:
        0 16px 30px rgba(20, 40, 92, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.site-footer__section h2 {
    margin: 0;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__section--brand {
    gap: 0.7rem;
}

.site-footer__brand-text {
    max-width: 34ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    line-height: 1.55;
}

.site-footer__section p,
.site-footer__section a,
.site-footer__section span,
.site-footer__section address {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    line-height: 1.5;
    text-decoration: none;
}

.site-footer__section .site-footer__social {
    color: var(--orya-blue);
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.site-footer__links a,
.site-footer__section--contact a {
    width: fit-content;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__section--contact a:hover {
    color: #fff;
    transform: translateX(2px);
}

.site-footer__section address {
    display: grid;
    gap: 0.14rem;
    font-style: normal;
}

.site-footer__hours {
    display: grid;
    gap: 0.12rem;
    margin-top: 0.25rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__hours span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__hours strong {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    color: var(--orya-blue);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 18px rgba(20, 40, 92, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.site-footer__social:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(20, 40, 92, 0.16);
    background: #fff;
}

.site-footer__social svg {
    width: 1rem;
    height: 1rem;
    display: block;
    overflow: visible;
}

.site-footer__section--connect {
    justify-items: start;
}

.site-footer__bottom {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.55rem 0.8rem;
    margin-top: 0.1rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.site-footer__legal a {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.66rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__legal a:hover {
    background: rgba(33, 57, 142, 0.18);
    color: #fff;
    transform: translateY(-1px);
}

.site-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.68rem;
    text-align: right;
}

.home-recovered {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.4rem);
    padding-bottom: 0.4rem;
}

.home-recovered.is-loaded .home-recovered__hero-frame,
.home-recovered.is-loaded .home-recovered__benefit-card,
.home-recovered.is-loaded .home-recovered__product-card,
.home-recovered.is-loaded .home-recovered__multi-panel,
.home-recovered.is-loaded .home-recovered__oil-box,
.home-recovered.is-loaded .home-recovered__xxlong-shell {
    opacity: 1;
    transform: none;
}

.home-recovered__hero-frame,
.home-recovered__benefit-card,
.home-recovered__product-card,
.home-recovered__multi-panel,
.home-recovered__oil-box,
.home-recovered__xxlong-shell {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.home-recovered__masthead {
    padding-top: clamp(1.6rem, 4vw, 3rem);
}

.home-recovered__intro {
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    text-align: center;
}

.home-recovered__intro h1 {
    margin: 0;
    color: var(--orya-deep-blue);
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: min(100%, 12ch);
    margin-inline: auto;
    text-wrap: balance;
}

.home-recovered__intro p {
    max-width: 28ch;
    margin: 0;
    color: #253666;
    font-size: clamp(0.98rem, 1.4vw, 1.35rem);
    line-height: 1.28;
}

.home-recovered__hero-stack {
    display: grid;
    gap: 0;
}

.home-recovered__hero-frame {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
    border-top: 8px solid var(--orya-lime);
    box-shadow: 0 14px 28px rgba(25, 47, 109, 0.1);
}

.home-recovered__hero-carousel {
    position: relative;
    background: linear-gradient(180deg, #86d6f0 0%, #6ccced 100%);
}

.home-recovered__hero-track {
    position: relative;
    aspect-ratio: 3954 / 1246;
    min-height: clamp(170px, 30vw, 430px);
}

.home-recovered__hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.home-recovered__hero-slide.is-active {
    opacity: 1;
}

.home-recovered__hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.home-recovered__hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.8rem;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
}

.home-recovered__hero-dot {
    width: 0.78rem;
    height: 0.78rem;
    padding: 0;
    border: 1px solid rgba(42, 76, 168, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 8px 14px rgba(25, 47, 109, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.home-recovered__hero-dot:hover {
    transform: scale(1.08);
}

.home-recovered__hero-dot.is-active {
    background: var(--orya-lime);
    border-color: var(--orya-deep-blue);
    transform: scale(1.14);
}

.home-recovered__ribbon-shell {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 1.1rem clamp(1rem, 3vw, 2rem) 2rem;
    overflow: hidden;
}

.home-recovered__ribbon-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    background: linear-gradient(180deg, #1f3e96 0%, #193483 100%);
    border-bottom: 3px solid #5bc9e8;
}

.home-recovered__ribbon-shell p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-family: "HandOfSeanDemo", "Brush Script MT", cursive;
    font-size: clamp(1.45rem, 2.35vw, 2.7rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-align: center;
}

.home-recovered__benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.7rem);
}

.home-recovered__benefit-card {
    text-align: center;
}

.home-recovered__benefit-line {
    display: block;
    width: min(86%, 264px);
    height: 6px;
    margin: 0 auto 0.85rem;
    background: var(--orya-lime);
}

.home-recovered__benefit-card h2 {
    margin: 0 0 0.6rem;
    color: var(--orya-deep-blue);
    font-size: clamp(1rem, 1.45vw, 1.4rem);
    font-weight: 500;
}

.home-recovered__benefit-card p {
    margin: 0 auto;
    max-width: 20ch;
    color: var(--orya-muted);
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    line-height: 1.35;
}

.home-recovered__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.home-recovered__section-head h2 {
    margin: 0;
    color: var(--orya-deep-blue);
    font-size: clamp(1.45rem, 2.2vw, 2.35rem);
    font-weight: 500;
}

.home-recovered__section-buttons {
    display: flex;
    gap: 0.75rem;
}

.home-recovered__section-buttons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--orya-deep-blue);
    font-size: 1.5rem;
    line-height: 1;
    border: 1px solid rgba(42, 76, 168, 0.35);
    border-radius: 8px;
    background: #fff;
}

.home-recovered__product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.5vw, 1.1rem);
}

.home-recovered__product-card {
    display: grid;
    overflow: hidden;
    box-shadow: var(--orya-shadow);
    text-decoration: none;
    background: #fff;
}

.home-recovered__product-image {
    aspect-ratio: 1.08 / 0.9;
    overflow: hidden;
}

.home-recovered__product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-recovered__product-caption {
    display: grid;
    gap: 0.35rem;
    min-height: 96px;
    padding: 1rem 0.85rem;
    text-align: center;
}

.home-recovered__product-caption h3,
.home-recovered__product-caption p {
    margin: 0;
}

.home-recovered__product-caption h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: uppercase;
}

.home-recovered__product-caption p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 700;
}

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

.home-recovered__multi-panel {
    position: relative;
    min-height: clamp(240px, 30vw, 390px);
    overflow: hidden;
}

.home-recovered__multi-panel--product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.7rem 1.5rem 0.9rem;
    background: linear-gradient(180deg, #91dbf0 0%, #66c3ea 47%, #323a98 47%, #323a98 100%);
}

.home-recovered__promo-tag {
    display: inline-grid;
    gap: 0;
    width: fit-content;
    background: linear-gradient(180deg, #303895 0%, #3e4aac 100%);
    box-shadow: 0 12px 24px rgba(38, 52, 118, 0.24);
}

.home-recovered__promo-tag span,
.home-recovered__promo-tag small {
    display: block;
    padding: 0.42rem 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
}

.home-recovered__promo-tag span {
    color: #fff;
    font-size: clamp(1.15rem, 1.5vw, 1.8rem);
}

.home-recovered__promo-tag small {
    color: #1f3b8a;
    font-size: clamp(0.86rem, 1vw, 1.05rem);
    background: linear-gradient(180deg, rgba(87, 198, 234, 0.7), rgba(87, 198, 234, 0.08));
}

.home-recovered__multi-pack {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 180px;
    padding-top: 0.8rem;
}

.home-recovered__multi-pack img {
    display: block;
    width: min(88%, 430px);
    height: auto;
    filter: drop-shadow(0 22px 20px rgba(20, 34, 82, 0.24));
}

.home-recovered__multi-panel--message {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    background-color: #ddfe50;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.home-recovered__multi-panel--message::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(78, 99, 199, 0.86) 0%, rgba(92, 124, 219, 0.92) 100%);
}

.home-recovered__multi-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.5rem;
    justify-items: center;
    text-align: center;
}

.home-recovered__multi-copy h2,
.home-recovered__multi-copy p {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.home-recovered__multi-copy h2 {
    font-size: clamp(1.55rem, 2vw, 2.3rem);
    font-weight: 400;
}

.home-recovered__multi-copy p {
    font-size: clamp(1.15rem, 1.6vw, 1.85rem);
    font-weight: 400;
}

.home-recovered__oil-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    box-shadow: var(--orya-shadow);
}

.home-recovered__oil-box {
    position: relative;
    min-height: clamp(210px, 24vw, 300px);
    overflow: hidden;
}

.home-recovered__oil-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-recovered__oil-box--stove {
    background: linear-gradient(135deg, #fff375 0%, #fff9d2 100%);
}

.home-recovered__oil-box--copy {
    display: grid;
    align-content: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, #d7fb44 0%, #bffb38 100%);
}

.home-recovered__oil-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.home-recovered__oil-badges span {
    display: inline-block;
    padding: 0.38rem 0.7rem;
    color: #18397f;
    font-size: clamp(0.95rem, 1.3vw, 1.45rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(216, 177, 17, 0.28), rgba(216, 177, 17, 0.58));
}

.home-recovered__oil-badges span:last-child {
    color: #fff;
    background: linear-gradient(180deg, rgba(34, 128, 84, 0.78), rgba(42, 142, 83, 0.98));
}

.home-recovered__oil-box--copy p {
    max-width: 12ch;
    margin: 0;
    color: #173878;
    font-size: clamp(1rem, 1.25vw, 1.35rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-recovered__oil-box--lemon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem;
    background: linear-gradient(135deg, #ffe34a 0%, #ffd640 34%, #14a157 100%);
}

.home-recovered__oil-rinse {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.45rem;
}

.home-recovered__oil-rinse span {
    display: inline-block;
    width: fit-content;
    min-width: 250px;
    padding: 0.26rem 0.75rem;
    font-size: clamp(0.92rem, 1.3vw, 1.4rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 10px;
}

.home-recovered__oil-rinse span:nth-child(1) {
    color: #168449;
    background: rgba(255, 248, 169, 0.9);
    border: 4px solid rgba(27, 150, 80, 0.9);
}

.home-recovered__oil-rinse span:nth-child(2) {
    color: #fff;
    background: rgba(19, 152, 75, 0.95);
}

.home-recovered__oil-rinse span:nth-child(3) {
    color: #2b6d44;
    background: rgba(255, 255, 255, 0.96);
}

.home-recovered__oil-box--lemon img {
    width: min(44%, 230px);
    height: auto;
    object-fit: contain;
}

.home-recovered__oil-box--pack {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem;
    background-color: #13964d;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-recovered__oil-box--pack img {
    width: min(88%, 430px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 18px rgba(17, 76, 44, 0.22));
}

.home-recovered__xxlong-shell {
    padding: clamp(0.9rem, 1.4vw, 1.2rem);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 24%),
        linear-gradient(135deg, #4a97e1 0%, #7cccec 54%, #ffffff 54%, #ffffff 100%);
    box-shadow: var(--orya-shadow);
    overflow: hidden;
}

.home-recovered__xxlong-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.2rem 0.15rem 0.9rem;
}

.home-recovered__xxlong-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    background: rgba(32, 57, 142, 0.16);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.home-recovered__xxlong-title h2 {
    margin: 0;
    font-size: clamp(3.9rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.88;
    text-transform: uppercase;
    color: rgba(236, 249, 255, 0.78);
    text-shadow: 0 14px 26px rgba(31, 57, 142, 0.12);
}

.home-recovered__xxlong-stage {
    display: grid;
    grid-template-columns: minmax(17rem, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(0.8rem, 1.4vw, 1rem);
    align-items: stretch;
}

.home-recovered__xxlong-copy {
    display: grid;
    align-content: center;
    gap: 0.58rem;
    padding: clamp(1.4rem, 2vw, 2rem);
    border-radius: 1.7rem;
    background:
        linear-gradient(180deg, rgba(61, 67, 137, 0.98), rgba(47, 55, 123, 0.96));
    box-shadow: 0 18px 30px rgba(25, 47, 109, 0.14);
}

.home-recovered__xxlong-copy strong,
.home-recovered__xxlong-copy span,
.home-recovered__xxlong-copy p {
    margin: 0;
}

.home-recovered__xxlong-copy strong {
    color: #fff;
    font-size: clamp(1.8rem, 2.2vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.94;
    text-transform: uppercase;
}

.home-recovered__xxlong-copy span {
    color: var(--orya-lime);
    font-size: clamp(1rem, 1.22vw, 1.34rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-transform: uppercase;
}

.home-recovered__xxlong-copy p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 28ch;
    font-size: clamp(0.93rem, 1vw, 1.02rem);
    font-weight: 500;
    line-height: 1.58;
}

.home-recovered__xxlong-pack {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: clamp(1rem, 2vw, 1.45rem);
    border-radius: 1.8rem;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18)),
        linear-gradient(180deg, #9fdcf3 0%, #bfeef8 100%);
    overflow: hidden;
}

.home-recovered__xxlong-pack::after {
    content: "";
    position: absolute;
    inset: auto 8% 8% 8%;
    height: 1.1rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(31, 57, 142, 0.2), rgba(31, 57, 142, 0));
    filter: blur(12px);
    pointer-events: none;
}

.home-recovered__xxlong-pack img {
    position: relative;
    z-index: 1;
    width: min(100%, 600px);
    height: auto;
    filter: drop-shadow(0 22px 26px rgba(20, 34, 82, 0.22));
}

.home-recovered__swatches {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.6vw, 1rem);
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.95rem 0 0;
}

.home-recovered__swatch {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0.42rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 20px rgba(25, 47, 109, 0.1);
}

.home-recovered__swatch img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.04;
    height: auto;
    object-fit: cover;
    border-radius: 0.95rem;
}

.home-recovered__swatch figcaption {
    padding: 0 0.2rem 0.12rem;
    color: var(--orya-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .site-header__panel {
        gap: 1rem;
    }

    .site-search {
        width: min(190px, 30vw);
    }

    .site-footer__shell {
        padding-inline: 0.9rem;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .site-footer__section--brand {
        grid-column: 1 / -1;
    }

    .home-recovered__oil-rinse span {
        min-width: 0;
    }
}

@media (max-width: 900px) {
    .home-recovered__hero-stack > .content-wrap.content-wrap--wide {
        width: 100%;
    }

    .home-recovered__hero-stack {
        overflow: clip;
    }

    .home-recovered__hero-frame,
    .home-recovered__ribbon-shell {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .site-header__nav {
        min-height: 76px;
    }

    .site-header__menu-toggle {
        display: inline-flex;
    }

    .site-header__panel {
        position: absolute;
        top: calc(100% + 0.85rem);
        left: 0.75rem;
        right: 0.75rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1.1rem;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--orya-shadow);
    }

    .site-header.is-menu-open .site-header__panel {
        display: flex;
    }

    .site-header__panel .site-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header__panel .site-search {
        width: 100%;
    }

    .home-recovered__benefit-grid,
    .home-recovered__product-grid,
    .home-recovered__multi-grid,
    .home-recovered__oil-grid,
    .home-recovered__xxlong-stage {
        grid-template-columns: 1fr;
    }

    .home-recovered__section-buttons {
        display: none;
    }

    .home-recovered__oil-box--copy p {
        max-width: none;
    }

    .home-recovered__xxlong-pack {
        padding: 0.9rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .site-footer__legal {
        justify-content: center;
    }

    .home-recovered__hero-carousel,
    .home-recovered__hero-track,
    .home-recovered__hero-slide {
        overflow: clip;
    }

    .home-recovered__hero-track {
        aspect-ratio: auto;
        min-height: 0;
    }

    .home-recovered__hero-slide {
        position: relative;
        display: none;
    }

    .home-recovered__hero-slide.is-active {
        display: block;
    }

    .home-recovered__hero-slide img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 680px) {
    .site-header__nav {
        min-height: 72px;
    }

    body.orya-shell {
        --site-header-offset: 5rem;
    }

    .site-header__logo {
        width: 118px;
        transform: translateY(8px);
    }

    .site-header__panel {
        left: 0.5rem;
        right: 0.5rem;
    }

    .home-recovered {
        gap: 1.5rem;
    }

    .home-recovered__masthead {
        padding-top: 1.35rem;
    }

    .home-recovered__masthead .content-wrap {
        display: flex;
        justify-content: center;
    }

    .home-recovered__intro {
        width: min(100%, 20rem);
        margin-inline: auto;
        padding-inline: 0.35rem;
        transform: translateX(-0.18rem);
    }

    .home-recovered__intro h1 {
        font-size: 2.15rem;
        max-width: 9.5ch;
    }

    .home-recovered__intro p {
        margin-inline: auto;
        font-size: 1rem;
    }

    .home-recovered__hero-track {
        min-height: 0;
    }

    .home-recovered__hero-dots {
        bottom: 0.55rem;
    }

    .home-recovered__ribbon-shell {
        padding: 0.95rem 0.9rem 1.7rem;
    }

    .home-recovered__ribbon-shell p {
        max-width: none;
    }

    .home-recovered__xxlong-title {
        gap: 0.35rem;
        padding-bottom: 0.55rem;
    }

    .home-recovered__xxlong-title h2 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .home-recovered__xxlong-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    .home-recovered__swatch {
        gap: 0.38rem;
        padding: 0.35rem;
    }

    .home-recovered__swatch figcaption {
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }

    .home-recovered__product-caption {
        min-height: 0;
        padding: 1rem 0.85rem;
    }

    .home-recovered__product-caption h3 {
        font-size: 1.1rem;
    }

    .home-recovered__product-caption p {
        font-size: 1rem;
    }

    .home-recovered__multi-panel,
    .home-recovered__oil-box {
        min-height: 220px;
    }

    .home-recovered__multi-panel--product,
    .home-recovered__multi-panel--message,
    .home-recovered__oil-box--copy,
    .home-recovered__oil-box--lemon,
    .home-recovered__xxlong-copy {
        padding: 1.25rem;
    }

    .site-footer__section {
        padding: 0.9rem;
    }

    .site-footer__brand {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .site-footer__social {
        width: 2.2rem;
        height: 2.2rem;
    }

    .site-footer__copyright {
        text-align: center;
    }

    .home-recovered__oil-box--lemon {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-recovered__oil-box--lemon img {
        width: 72%;
        align-self: flex-end;
    }

    .home-recovered__swatches {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 20rem;
    }

    .site-footer {
        margin-top: 1.6rem;
    }

    .site-footer__band {
        padding: 1.2rem 0 0.8rem;
    }

    .site-footer__shell {
        padding-inline: 0.75rem;
    }

    .site-footer__brand {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .site-footer__brand-mark {
        width: 4.4rem;
    }

    .site-footer__brand-copy h2 {
        font-size: 1.55rem;
    }

    .site-footer__brand-copy p {
        font-size: 0.8rem;
    }

    .site-footer__section h2 {
        font-size: 0.74rem;
    }

    .site-footer__section p,
    .site-footer__section a,
    .site-footer__section span,
    .site-footer__section address {
        font-size: 0.74rem;
    }

    .site-footer__legal {
        gap: 0.32rem;
    }

    .site-footer__legal a,
    .site-footer__copyright {
        font-size: 0.64rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .home-recovered__hero-frame,
    .home-recovered__benefit-card,
    .home-recovered__product-card,
    .home-recovered__multi-panel,
    .home-recovered__oil-box,
    .home-recovered__xxlong-shell,
    .site-nav__link::after {
        transition: none;
    }

    .home-recovered__hero-frame,
    .home-recovered__benefit-card,
    .home-recovered__product-card,
    .home-recovered__multi-panel,
    .home-recovered__oil-box,
    .home-recovered__xxlong-shell {
        opacity: 1;
        transform: none;
    }
}

/* Pixel-perfect reference sections */
.home-recovered__reference-block {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    line-height: 0;
    overflow: hidden;
}

.home-recovered__reference-block img {
    display: block;
    width: 100%;
    height: auto;
}

/* Footer: remove box/transparency logic */
.site-footer__band {
    background: #59c6e8;
}

.site-footer__band::after {
    display: none;
}

.site-footer__grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}

.site-footer__section {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.site-footer__brand-mark {
    width: clamp(5rem, 7vw, 7rem);
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-footer__brand-mark img,
.site-header__logo img {
    filter: none;
}

.site-footer__eyebrow {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.site-footer__social {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
}

.site-footer__social:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

.site-footer__social svg {
    width: 1.15rem;
    height: 1.15rem;
}

.site-footer__bottom {
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.site-footer__legal a {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.site-footer__legal a:hover {
    background: transparent;
    transform: none;
}

@media (max-width: 900px) {
    .home-recovered__reference-block {
        margin-inline: 0;
        width: 100%;
        max-width: 100%;
    }
}

/* Full-page pixel-perfect home reference */
body.orya-shell.orya-shell--image-home {
    background: #e5e5e5;
}

.orya-main.orya-main--image-home {
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
}

.home-reference-page {
    width: min(100vw, 1170px);
    margin: 0 auto;
    line-height: 0;
}

.home-reference-page img {
    display: block;
    width: 100%;
    height: auto;
}

/* Coded pixel-perfect home composition */
.home-blueprint {
    width: min(100vw, 1170px);
    margin: 0 auto;
    padding-top: 154px;
    background: transparent;
    color: #243d84;
    font-family: "Avenir", "Segoe UI", sans-serif;
}

.home-blueprint__topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    width: 100vw;
    max-width: 100vw;
    background: linear-gradient(180deg, #5ec9ec 0%, #58c4e8 100%);
    box-shadow:
        0 14px 22px rgba(20, 38, 90, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.34);
    transition:
        min-height 0.26s ease,
        padding 0.26s ease,
        box-shadow 0.26s ease;
}

.home-blueprint__topbar-inner {
    position: relative;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 274px;
    align-items: center;
    width: min(100vw, 1170px);
    min-height: 132px;
    margin: 0 auto;
    padding: 0 22px;
    transition:
        min-height 0.26s ease,
        grid-template-columns 0.26s ease,
        padding 0.26s ease;
}

.home-blueprint__logo {
    position: relative;
    justify-self: start;
    align-self: end;
    width: 176px;
    margin-bottom: -24px;
    z-index: 1;
    filter: drop-shadow(0 8px 14px rgba(32, 64, 134, 0.24));
    transition:
        width 0.26s ease,
        margin-bottom 0.26s ease;
}

.home-blueprint__logo img {
    width: 100%;
    height: auto;
}

.home-blueprint__nav {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 2.35rem;
    margin-left: 0;
    transition: gap 0.26s ease;
}

.home-blueprint__nav a {
    color: #2e4ca8;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    transition:
        font-size 0.26s ease,
        color 0.2s ease;
}

.home-blueprint__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 2px;
    background: #2f4ca8;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.home-blueprint__nav a:hover {
    color: #233f93;
}

.home-blueprint__nav a:hover::after,
.home-blueprint__nav a.is-current::after {
    transform: scaleX(1);
}

.home-blueprint__nav a.is-current {
    color: #233f93;
}

.home-blueprint__search {
    display: flex;
    align-items: center;
    justify-self: end;
    width: 274px;
    min-height: 40px;
    padding: 0.12rem 0.22rem 0.12rem 0.84rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        width 0.26s ease,
        min-height 0.26s ease,
        padding 0.26s ease;
}

.home-blueprint__search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #142a60;
    font-size: 0.78rem;
    background: transparent;
}

.home-blueprint__search button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #132a60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-blueprint__search svg {
    width: 14px;
    height: 14px;
}

.home-blueprint__topbar.is-condensed {
    box-shadow:
        0 8px 14px rgba(20, 38, 90, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.34);
}

.home-blueprint__topbar.is-condensed .home-blueprint__topbar-inner {
    min-height: 100px;
    grid-template-columns: 190px minmax(0, 1fr) 236px;
    padding: 0 18px;
}

.home-blueprint__topbar.is-condensed .home-blueprint__logo {
    width: 148px;
    margin-bottom: -12px;
}

.home-blueprint__topbar.is-condensed .home-blueprint__nav {
    gap: 1.85rem;
}

.home-blueprint__topbar.is-condensed .home-blueprint__nav a {
    font-size: 0.86rem;
}

.home-blueprint__topbar.is-condensed .home-blueprint__search {
    width: 236px;
    min-height: 34px;
    padding: 0.08rem 0.16rem 0.08rem 0.72rem;
}

.home-blueprint__intro {
    text-align: center;
    padding: 22px 30px 42px;
    background: transparent;
}

.home-blueprint__intro h1 {
    margin: 0;
    font-family: "Cleanow", "Avenir", sans-serif;
    font-size: clamp(1.55rem, 3.2vw, 3.55rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.01em;
    color: #2746a3;
}

.home-blueprint__intro p {
    margin: 0.3rem 0 0;
    color: #29395f;
    font-size: clamp(0.84rem, 1.2vw, 1.45rem);
    font-weight: 500;
    line-height: 1.2;
}

.home-blueprint__hero-strip {
    border-top: 14px solid #afe632;
    line-height: 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.home-blueprint__hero-strip img {
    width: 100%;
    height: auto;
    display: block;
}

.home-blueprint__slogan {
    position: relative;
    background: #1f3f98;
    text-align: center;
    padding: 26px 20px 64px;
    border-bottom-left-radius: 50% 88px;
    border-bottom-right-radius: 50% 88px;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.home-blueprint__slogan::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 6px;
    background: #59c7ea;
}

.home-blueprint__slogan p {
    margin: 0;
    color: #fff;
    font-family: "HandOfSeanDemo", "Brush Script MT", cursive;
    font-size: clamp(2rem, 3.4vw, 3.7rem);
    letter-spacing: 0.02em;
    line-height: 1;
}

.home-blueprint__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.8rem;
    padding: 74px 40px 50px;
    align-items: start;
}

.home-blueprint__benefit {
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: start;
    text-align: center;
}

.home-blueprint__benefit:nth-child(3) {
    margin-top: -4px;
}

.home-blueprint__benefit h2 {
    position: relative;
    margin: 0 0 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 2.55em;
    padding-bottom: 18px;
    color: #203d85;
    font-size: clamp(1.1rem, 1.85vw, 2.05rem);
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
}

.home-blueprint__benefit h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(100%, 264px);
    height: 6px;
    margin: 0;
    background: #84d937;
    transform: translateX(-50%);
}

.home-blueprint__benefit p {
    margin: 0;
    color: #72becd;
    font-size: clamp(0.94rem, 1.3vw, 1.28rem);
    line-height: 1.3;
}

.home-blueprint__products {
    padding: 42px 38px 40px;
}

.home-blueprint__products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.home-blueprint__products-head h2 {
    margin: 0;
    color: #1f3d84;
    font-size: clamp(1.9rem, 3vw, 3.4rem);
    font-weight: 500;
    line-height: 1;
}

.home-blueprint__products-nav {
    display: flex;
    gap: 10px;
}

.home-blueprint__products-nav span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(31, 61, 132, 0.72);
    border-radius: 8px;
    color: #1f3d84;
    font-size: 2rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.55);
}

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

.home-blueprint__product-card {
    display: block;
    background: #fff;
    box-shadow: none;
}

.home-blueprint__product-card img {
    width: 100%;
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-blueprint__product-caption {
    display: grid;
    gap: 0.38rem;
    min-height: 102px;
    padding: 15px 12px 14px;
    text-align: center;
    color: #fff;
    align-content: center;
}

.home-blueprint__product-caption strong {
    font-size: clamp(0.9rem, 1.05vw, 1.12rem);
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1;
}

.home-blueprint__product-caption span {
    font-size: clamp(0.86rem, 1.02vw, 1.08rem);
    font-weight: 700;
    line-height: 1.06;
}

.home-blueprint__product-caption--cyan {
    background: #69bddc;
}

.home-blueprint__product-caption--cyan strong {
    color: #2e3f93;
}

.home-blueprint__product-caption--green {
    background: #1f9847;
}

.home-blueprint__product-caption--green strong {
    color: #c9e33b;
}

.home-blueprint__product-caption--blue {
    background: #313a93;
}

.home-blueprint__product-caption--blue strong {
    color: #61c6e7;
}

.home-blueprint__campaign {
    margin: 38px 40px;
    line-height: 0;
    box-shadow: 0 18px 24px rgba(20, 38, 90, 0.14);
}

.home-blueprint__campaign img {
    width: 100%;
    height: auto;
    display: block;
}

.home-blueprint__campaign--mop {
    margin-bottom: 24px;
}

.home-blueprint__prefooter {
    position: relative;
    width: min(100vw, 1170px);
    height: 92px;
    margin: 0 auto;
}

.home-blueprint__prefooter img {
    position: absolute;
    right: 84px;
    bottom: -28px;
    width: 220px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 10px 16px rgba(255, 255, 255, 0.85));
}

.home-blueprint__footer {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 56px 0 38px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(198, 244, 61, 0.35), transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(31, 61, 132, 0.34), transparent 34%),
        linear-gradient(180deg, #5cc9ec 0%, #46bae3 48%, #3eb2de 100%);
    overflow: hidden;
}

.home-blueprint__footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2f4aa2 0%, #7fe1ff 52%, #c8f43d 100%);
}

.home-blueprint__footer-shell {
    position: relative;
    width: min(100vw, 1170px);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(132px, 0.72fr) minmax(170px, 0.88fr) minmax(0, 1.08fr);
    gap: clamp(1rem, 1.8vw, 2.1rem);
    align-items: start;
}

.home-blueprint__footer-col {
    min-width: 0;
}

.home-blueprint__footer-col h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-blueprint__footer-col p,
.home-blueprint__footer-col address,
.home-blueprint__footer-links a {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(0.75rem, 0.86vw, 0.9rem);
    font-style: normal;
    line-height: 1.74;
}

.home-blueprint__footer-col--company p {
    max-width: 460px;
}

.home-blueprint__footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.home-blueprint__footer-links a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-blueprint__footer-links a:hover {
    color: #e6ff8f;
}

.home-blueprint__socials {
    display: grid;
    grid-template-columns: repeat(2, 54px);
    gap: 14px;
}

.home-blueprint__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 18px rgba(26, 51, 116, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.home-blueprint__socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(26, 51, 116, 0.24);
}

.home-blueprint__socials svg {
    width: 20px;
    height: 20px;
    fill: #2d4ca7;
}

.home-blueprint__footer-col--index {
    justify-self: center;
}

.home-blueprint__footer-col--social {
    justify-self: center;
}

.home-blueprint__footer-col--contact {
    justify-self: end;
    text-align: right;
}

@media (max-width: 1200px) {
    .home-blueprint {
        padding-top: 136px;
    }

    .home-blueprint__topbar-inner {
        min-height: 118px;
        grid-template-columns: 186px minmax(0, 1fr) 220px;
        padding: 0 18px;
    }

    .home-blueprint__logo {
        width: 156px;
        margin-bottom: -16px;
    }

    .home-blueprint__nav {
        gap: 1.4rem;
    }

    .home-blueprint__nav a {
        font-size: 0.82rem;
    }

    .home-blueprint__search {
        width: 220px;
        min-height: 36px;
    }

    .home-blueprint__search input {
        font-size: 0.74rem;
    }

    .home-blueprint__topbar.is-condensed .home-blueprint__topbar-inner {
        min-height: 92px;
        grid-template-columns: 162px minmax(0, 1fr) 204px;
        padding: 0 14px;
    }

    .home-blueprint__topbar.is-condensed .home-blueprint__logo {
        width: 136px;
        margin-bottom: -8px;
    }

    .home-blueprint__topbar.is-condensed .home-blueprint__search {
        width: 204px;
        min-height: 32px;
    }

    .home-blueprint__products,
    .home-blueprint__benefits {
        padding-inline: 20px;
    }

    .home-blueprint__campaign {
        margin-inline: 20px;
    }

    .home-blueprint__prefooter img {
        right: 32px;
        width: 170px;
    }

    .home-blueprint__footer-shell {
        padding-inline: 20px;
        grid-template-columns: minmax(0, 1.3fr) minmax(118px, 0.7fr) minmax(156px, 0.86fr) minmax(0, 1fr);
        gap: 1.15rem;
    }
}

@media (max-width: 900px) {
    .orya-main {
        padding-top: 0;
    }

    .home-blueprint {
        padding-top: 0;
    }

    .home-blueprint__topbar {
        position: relative;
        margin-inline: 0;
        width: 100%;
        max-width: 100%;
    }

    .home-blueprint__topbar-inner {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        min-height: 0;
        width: 100%;
        padding: 14px 12px 12px;
        gap: 0.65rem;
    }

    .home-blueprint__logo {
        position: static;
        width: 160px;
        margin-bottom: 0;
    }

    .home-blueprint__nav {
        gap: 0.8rem;
        margin: 0;
        flex-wrap: wrap;
        justify-self: start;
    }

    .home-blueprint__search {
        width: 100%;
        max-width: 300px;
    }

    .home-blueprint__search input {
        font-size: 0.92rem;
    }

    .home-blueprint__topbar.is-condensed .home-blueprint__topbar-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        width: 100%;
        padding: 14px 12px 12px;
        gap: 0.65rem;
    }

    .home-blueprint__topbar.is-condensed .home-blueprint__logo {
        width: 160px;
        margin-bottom: 0;
    }

    .home-blueprint__intro {
        padding: 28px 12px 24px;
    }

    .home-blueprint__benefit h2 {
        min-height: 0;
    }

    .home-blueprint__benefit:nth-child(3) {
        margin-top: 0;
    }

    .home-blueprint__slogan {
        padding: 18px 12px 40px;
        margin-inline: 0;
        width: 100%;
        max-width: 100%;
    }

    .home-blueprint__benefits,
    .home-blueprint__product-grid,
    .home-blueprint__footer-shell {
        grid-template-columns: 1fr;
    }

    .home-blueprint__products-head {
        flex-wrap: wrap;
        gap: 0.7rem;
    }

    .home-blueprint__products-nav span {
        width: 38px;
        height: 38px;
        font-size: 1.55rem;
    }

    .home-blueprint__campaign {
        margin: 20px 12px;
    }

    .home-blueprint__hero-strip {
        margin-inline: 0;
        width: 100%;
        max-width: 100%;
    }

    .home-blueprint__prefooter {
        height: 70px;
    }

    .home-blueprint__prefooter img {
        right: 10px;
        width: 124px;
        bottom: -14px;
    }

    .home-blueprint__footer {
        padding: 40px 0 26px;
    }

    .home-blueprint__footer-shell {
        padding-inline: 12px;
    }

    .home-blueprint__socials {
        grid-template-columns: repeat(4, 52px);
    }

    .home-blueprint__footer-col--contact {
        align-self: auto;
        justify-self: start;
        text-align: left;
    }

    .home-blueprint__footer-col--index,
    .home-blueprint__footer-col--social {
        justify-self: start;
    }
}
