body.dryuu-gateway-page {
    margin: 0;
    background: #f6fbfd;
    overflow-x: hidden;
}

body.dryuu-gateway-page .wp-site-blocks > header.wp-block-template-part,
body.dryuu-gateway-page .wp-site-blocks > footer.wp-block-template-part {
    display: none !important;
}

body.dryuu-gateway-page main.wp-block-group,
body.dryuu-gateway-page main.wp-block-group > *,
body.dryuu-gateway-page .entry-content,
body.dryuu-gateway-page .wp-block-post-content,
body.dryuu-gateway-page .has-global-padding,
body.dryuu-gateway-page .is-layout-constrained,
body.dryuu-gateway-page .alignwide,
body.dryuu-gateway-page .alignfull {
    width: 100% !important;
    max-width: none !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 0 !important;
}

.dryuu-gateway {
    --dryuu-pink: #ef6aa8;
    --dryuu-blue: #9bd8f2;
    --dryuu-lime: #d7f25f;
    --dryuu-black: #0e0e10;
    --dryuu-ink: #202126;
    --dryuu-soft: #f6fbfd;
    --dryuu-line: #dfe6ea;
    --dryuu-muted: #63666d;
    --dryuu-shadow: 0 22px 60px rgba(16, 22, 28, 0.12);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 100vh;
    color: var(--dryuu-ink);
    background:
        linear-gradient(90deg, rgba(155, 216, 242, 0.18) 1px, transparent 1px),
        linear-gradient(0deg, rgba(239, 106, 168, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 84% 13%, rgba(155, 216, 242, 0.28), transparent 26%),
        #ffffff;
    background-size: 72px 72px, 72px 72px, auto, auto;
    font-family: Arial, Helvetica, sans-serif;
}

.dryuu-gateway *,
.dryuu-gateway *::before,
.dryuu-gateway *::after {
    box-sizing: border-box;
}

.dryuu-gateway::before,
.dryuu-gateway::after {
    position: fixed;
    z-index: -1;
    color: rgba(14, 14, 16, 0.055);
    font-size: clamp(72px, 10vw, 156px);
    font-weight: 950;
    line-height: 0.78;
    letter-spacing: 0;
    text-transform: uppercase;
    pointer-events: none;
}

.dryuu-gateway::before {
    content: "LABORATORY";
    left: -40px;
    top: 28vh;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.dryuu-gateway::after {
    content: "CHARACTER";
    right: -34px;
    top: 40vh;
    writing-mode: vertical-rl;
}

.dryuu-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(150px, 1fr);
    align-items: center;
    gap: 28px;
    min-height: 82px;
    padding: 0 clamp(22px, 4vw, 72px);
    border-bottom: 1px solid rgba(14, 14, 16, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.dryuu-site-logo {
    display: inline-flex;
    width: fit-content;
    flex-direction: column;
    color: var(--dryuu-black);
    text-decoration: none;
}

.dryuu-site-logo strong {
    color: var(--dryuu-pink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    line-height: 0.9;
    font-weight: 800;
}

.dryuu-site-logo span {
    margin-top: 8px;
    color: var(--dryuu-muted);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dryuu-site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.dryuu-site-nav a,
.dryuu-header-cta,
.dryuu-action-primary,
.dryuu-action-secondary,
.dryuu-product-link,
.dryuu-gateway-footer a {
    color: var(--dryuu-black);
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.dryuu-site-nav a {
    position: relative;
    padding: 34px 0 31px;
}

.dryuu-site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: var(--dryuu-pink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.dryuu-site-nav a:hover::after,
.dryuu-site-nav a:focus::after {
    transform: scaleX(1);
}

.dryuu-header-cta {
    justify-self: end;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: var(--dryuu-black);
    color: #ffffff;
}

.dryuu-header-cta:hover,
.dryuu-header-cta:focus,
.dryuu-action-primary:hover,
.dryuu-action-primary:focus,
.dryuu-product-link:hover,
.dryuu-product-link:focus {
    background: var(--dryuu-pink);
    color: #ffffff;
}

.dryuu-gateway-hero,
.dryuu-region-panel,
.dryuu-products-panel,
.dryuu-routing-panel,
.dryuu-gateway-footer {
    width: min(1680px, calc(100% - clamp(32px, 6vw, 104px)));
    margin-right: auto;
    margin-left: auto;
}

.dryuu-gateway-hero {
    display: grid;
    grid-template-columns: minmax(390px, 0.72fr) minmax(680px, 1.28fr);
    gap: clamp(34px, 5vw, 86px);
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: clamp(44px, 6vh, 76px) 0 clamp(58px, 7vh, 96px);
}

.dryuu-gateway-hero-copy {
    position: relative;
    z-index: 2;
}

.dryuu-gateway-eyebrow,
.dryuu-section-heading p,
.dryuu-product-tag {
    margin: 0 0 11px;
    color: var(--dryuu-pink);
    font-size: 12px;
    font-weight: 950;
    line-height: 1.2;
    text-transform: uppercase;
}

.dryuu-gateway-eyebrow::before,
.dryuu-section-heading p::before {
    content: "";
    display: inline-block;
    width: 52px;
    height: 4px;
    margin-right: 12px;
    vertical-align: middle;
    background: var(--dryuu-pink);
}

.dryuu-gateway-hero h2 {
    max-width: 760px;
    margin: 0;
    color: #000000;
    font-size: clamp(54px, 5.8vw, 112px);
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dryuu-gateway-lede {
    max-width: 680px;
    margin: 22px 0 0;
    color: #3f4249;
    font-size: clamp(17px, 1.05vw, 21px);
    line-height: 1.7;
}

.dryuu-gateway-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.dryuu-action-primary,
.dryuu-action-secondary {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dryuu-black);
    padding: 0 22px;
}

.dryuu-action-primary {
    background: var(--dryuu-black);
    color: #ffffff;
}

.dryuu-action-secondary {
    background: #ffffff;
}

.dryuu-action-secondary:hover,
.dryuu-action-secondary:focus {
    border-color: var(--dryuu-pink);
    color: var(--dryuu-pink);
}

.dryuu-hero-product-markers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 680px;
    margin-top: 24px;
}

.dryuu-hero-product-markers span {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dryuu-line);
    background: rgba(255, 255, 255, 0.92);
    color: var(--dryuu-black);
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 950;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
}

.dryuu-hero-product-markers span:first-child {
    background: var(--dryuu-black);
    color: #ffffff;
}

.dryuu-hero-region-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    max-width: 760px;
    margin-top: 20px;
}

.dryuu-hero-region-label {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 12px;
    background: var(--dryuu-black);
    color: #ffffff;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.dryuu-hero-region-strip .dryuu-region-card {
    width: auto;
    min-height: 42px;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--dryuu-line);
    padding: 7px 9px;
    box-shadow: none;
}

.dryuu-hero-region-strip .dryuu-region-card.is-active {
    border-color: var(--dryuu-black);
}

.dryuu-hero-region-strip .dryuu-region-code {
    min-width: 30px;
    min-height: 22px;
    font-size: 11px;
}

.dryuu-hero-region-strip .dryuu-region-name {
    margin: 0;
    font-size: 12px;
    line-height: 1;
}

.dryuu-hero-region-strip .dryuu-region-domain {
    display: none;
}

.dryuu-current-region {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 20px;
    border: 2px solid var(--dryuu-black);
    background: #ffffff;
    padding: 12px 14px;
    color: var(--dryuu-black);
    font-size: 13px;
    font-weight: 900;
}

.dryuu-current-region strong {
    color: var(--dryuu-pink);
}

.dryuu-hero-showcase {
    position: relative;
    display: grid;
    grid-template-rows: minmax(520px, 1fr) auto;
    gap: 14px;
}

.dryuu-hero-showcase::before {
    content: "PRODUCTS";
    position: absolute;
    right: -18px;
    top: -42px;
    z-index: -1;
    color: rgba(155, 216, 242, 0.32);
    font-size: clamp(70px, 9vw, 140px);
    line-height: 0.8;
    font-weight: 950;
    text-transform: uppercase;
}

.dryuu-hero-feature-product,
.dryuu-hero-mini-product,
.dryuu-product-card,
.dryuu-region-grid,
.dryuu-routing-grid > div {
    border: 1px solid var(--dryuu-line);
    background: #ffffff;
}

.dryuu-hero-feature-product,
.dryuu-hero-mini-product {
    position: relative;
    overflow: hidden;
}

.dryuu-hero-feature-product {
    min-height: 520px;
    box-shadow: var(--dryuu-shadow);
}

.dryuu-hero-feature-product img,
.dryuu-hero-mini-product img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
}

.dryuu-hero-product-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    max-width: min(440px, calc(100% - 44px));
    background: rgba(14, 14, 16, 0.92);
    color: #ffffff;
    padding: 16px 18px;
}

.dryuu-hero-product-badge span {
    display: block;
    color: var(--dryuu-blue);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.dryuu-hero-product-badge strong {
    display: block;
    margin-top: 6px;
    font-size: clamp(24px, 3.1vw, 42px);
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
}

.dryuu-hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.dryuu-hero-mini-product {
    aspect-ratio: 1.45 / 1;
}

.dryuu-hero-mini-product span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: block;
    background: rgba(255, 255, 255, 0.94);
    color: var(--dryuu-black);
    padding: 8px 9px;
    font-size: 11px;
    font-weight: 950;
    line-height: 1.08;
    text-transform: uppercase;
}

.dryuu-region-panel,
.dryuu-products-panel,
.dryuu-routing-panel {
    padding: 70px 0 0;
}

.dryuu-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 20px;
}

.dryuu-section-heading h2 {
    max-width: 980px;
    margin: 0;
    color: #000000;
    font-size: clamp(42px, 4.7vw, 90px);
    line-height: 0.88;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dryuu-region-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    box-shadow: var(--dryuu-shadow);
}

.dryuu-region-card {
    appearance: none;
    display: flex;
    min-height: 178px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    border: 0;
    border-right: 1px solid var(--dryuu-line);
    background: #ffffff;
    color: var(--dryuu-black);
    padding: 22px;
    text-align: left;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.dryuu-region-card:last-child {
    border-right: 0;
}

.dryuu-region-card:hover,
.dryuu-region-card:focus {
    transform: translateY(-2px);
}

.dryuu-region-card.is-active {
    background: var(--dryuu-black);
    color: #ffffff;
}

.dryuu-region-code {
    display: inline-flex;
    min-width: 44px;
    min-height: 27px;
    align-items: center;
    justify-content: center;
    background: var(--dryuu-pink);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
}

.dryuu-region-name {
    margin-top: 8px;
    font-size: 23px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}

.dryuu-region-language,
.dryuu-region-domain {
    color: currentColor;
    font-size: 13px;
    font-weight: 800;
    opacity: 0.76;
}

.dryuu-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.dryuu-product-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
}

.dryuu-product-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.58fr) minmax(380px, 0.72fr);
    min-height: 500px;
}

.dryuu-product-image-wrap {
    min-height: 250px;
    overflow: hidden;
    background: #ffffff;
}

.dryuu-product-card-featured .dryuu-product-image-wrap {
    min-height: 500px;
}

.dryuu-product-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: contain;
    background: #ffffff;
}

.dryuu-product-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: clamp(24px, 2.3vw, 42px);
}

.dryuu-product-card-featured .dryuu-product-copy {
    justify-content: center;
}

.dryuu-product-copy h3 {
    margin: 0;
    color: #000000;
    font-size: clamp(30px, 3vw, 58px);
    line-height: 0.93;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dryuu-product-subtitle {
    margin: 12px 0 0;
    color: var(--dryuu-black);
    font-size: 14px;
    font-weight: 950;
}

.dryuu-product-description {
    margin: 12px 0 0;
    color: var(--dryuu-muted);
    font-size: 15px;
    line-height: 1.6;
}

.dryuu-product-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 0 18px;
    background: var(--dryuu-black);
    color: #ffffff;
}

.dryuu-routing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dryuu-routing-grid > div {
    min-height: 230px;
    padding: clamp(24px, 2.5vw, 42px);
}

.dryuu-routing-grid strong {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: var(--dryuu-blue);
    color: var(--dryuu-black);
    font-size: 16px;
    font-weight: 950;
}

.dryuu-routing-grid h3 {
    margin: 24px 0 0;
    color: #000000;
    font-size: 26px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}

.dryuu-routing-grid p {
    margin: 14px 0 0;
    color: var(--dryuu-muted);
    font-size: 15px;
    line-height: 1.6;
}

.dryuu-gateway-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 78px;
    padding: 28px 0 46px;
    border-top: 1px solid var(--dryuu-line);
}

.dryuu-gateway-footer div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dryuu-gateway-footer strong {
    color: var(--dryuu-pink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 0.9;
}

.dryuu-gateway-footer span {
    color: var(--dryuu-muted);
    font-size: 13px;
    font-weight: 800;
}

.dryuu-gateway-footer a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border: 2px solid var(--dryuu-black);
    padding: 0 18px;
    background: #ffffff;
}

@media (max-width: 1080px) {
    .dryuu-site-header {
        grid-template-columns: 1fr auto;
    }

    .dryuu-site-nav {
        display: none;
    }

    .dryuu-gateway-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 36px;
    }

    .dryuu-gateway-hero h2 {
        max-width: 780px;
    }

    .dryuu-hero-showcase {
        grid-template-rows: auto auto;
    }

    .dryuu-hero-feature-product {
        min-height: 360px;
        aspect-ratio: 16 / 9;
    }

    .dryuu-region-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dryuu-region-card:nth-child(3n) {
        border-right: 0;
    }

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

    .dryuu-product-card,
    .dryuu-product-card-featured {
        grid-template-columns: 1fr;
    }

    .dryuu-product-card-featured .dryuu-product-image-wrap,
    .dryuu-product-image-wrap {
        min-height: 280px;
    }
}

@media (max-width: 760px) {
    .dryuu-gateway::before,
    .dryuu-gateway::after {
        display: none;
    }

    .dryuu-site-header {
        min-height: 72px;
        padding: 0 18px;
    }

    .dryuu-site-logo strong {
        font-size: 29px;
    }

    .dryuu-site-logo span {
        display: none;
    }

    .dryuu-header-cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: 11px;
    }

    .dryuu-gateway-hero,
    .dryuu-region-panel,
    .dryuu-products-panel,
    .dryuu-routing-panel,
    .dryuu-gateway-footer {
        width: min(100% - 28px, 1280px);
    }

    .dryuu-gateway-hero {
        padding: 28px 0 42px;
    }

    .dryuu-gateway-hero h2 {
        font-size: 44px;
    }

    .dryuu-gateway-lede {
        font-size: 15px;
        line-height: 1.65;
    }

    .dryuu-gateway-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .dryuu-action-primary,
    .dryuu-action-secondary {
        width: 100%;
    }

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

    .dryuu-hero-region-label {
        width: 100%;
        justify-content: center;
    }

    .dryuu-hero-region-strip .dryuu-region-card {
        flex: 1 1 calc(33.333% - 7px);
        justify-content: center;
        padding: 7px 5px;
    }

    .dryuu-hero-region-strip .dryuu-region-name {
        display: none;
    }

    .dryuu-hero-feature-product {
        min-height: 250px;
        aspect-ratio: 4 / 3;
    }

    .dryuu-hero-product-badge {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        padding: 11px 12px;
    }

    .dryuu-hero-product-badge strong {
        font-size: 22px;
    }

    .dryuu-hero-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .dryuu-hero-mini-product span {
        font-size: 10px;
        padding: 6px;
    }

    .dryuu-section-heading {
        display: block;
    }

    .dryuu-section-heading h2 {
        font-size: 40px;
    }

    .dryuu-region-grid,
    .dryuu-products-grid,
    .dryuu-routing-grid {
        grid-template-columns: 1fr;
    }

    .dryuu-region-card,
    .dryuu-region-card:nth-child(3n) {
        min-height: 132px;
        border-right: 0;
        border-bottom: 1px solid var(--dryuu-line);
    }

    .dryuu-region-card:last-child {
        border-bottom: 0;
    }

    .dryuu-product-copy {
        padding: 24px;
    }

    .dryuu-product-copy h3 {
        font-size: 32px;
    }

    .dryuu-product-card-featured .dryuu-product-image-wrap,
    .dryuu-product-image-wrap {
        min-height: 230px;
    }

    .dryuu-gateway-footer {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 56px;
        padding-bottom: 34px;
    }
}
