:root {
    --landing-bg: #0b0b0d;
    --landing-surface: #141416;
    --landing-surface-2: #1c1c20;
    --landing-text: #f6f4ed;
    --landing-muted: #9b9aa2;
    --landing-line: rgba(255, 255, 255, .13);
    --landing-accent: #027aff;
}

body.post-type-archive-landing,
body.tax-landing_category,
body.single-landing {
    background: var(--landing-bg);
    color: var(--landing-text);
    font-family: "DM Sans", Arial, sans-serif;
}

body.landing-preview-open {
    overflow: hidden;
}

.landing-portfolio,
.landing-portfolio * {
    box-sizing: border-box;
}

.landing-portfolio {
    background:
        radial-gradient(circle at 76% 6%, rgba(105, 87, 245, .18), transparent 30%),
        var(--landing-bg);
    color: var(--landing-text);
    min-height: 75vh;
    overflow: hidden;
}

.landing-portfolio a {
    color: inherit;
    text-decoration: none;
}

.landing-portfolio button,
.landing-portfolio input {
    font: inherit;
}

.landing-kicker {
    align-items: center;
    color: var(--landing-muted);
    display: flex;
    font-size: 10px;
    font-weight: 700;
    gap: 10px;
    letter-spacing: .16em;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.landing-kicker i {
    background: var(--landing-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px color-mix(in srgb, var(--landing-accent) 60%, transparent);
    display: block;
    height: 7px;
    width: 7px;
}

.landing-button {
    align-items: center;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    padding: 0 21px;
    transition: border-color .25s, background-color .25s, color .25s, transform .25s;
}

.landing-button:hover {
    border-color: rgba(255, 255, 255, .45);
    transform: translateY(-2px);
}

.landing-button:focus-visible,
.landing-filter-row button:focus-visible,
.landing-search input:focus-visible,
.landing-preview button:focus-visible,
.landing-preview a:focus-visible {
    outline: 2px solid var(--landing-accent);
    outline-offset: 3px;
}

.landing-button--primary {
    background: var(--landing-accent);
    border-color: var(--landing-accent);
    color: #11120d !important;
}

.landing-button--primary:hover {
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--landing-accent) 13%, transparent);
}

.landing-button--dark {
    background: #111;
    border-color: #111;
    color: #fff !important;
}

.landing-hero {
    min-height: min(760px, calc(100svh - 78px));
    position: relative;
}

.landing-hero::before {
    background-image:
        linear-gradient(var(--landing-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--landing-line) 1px, transparent 1px);
    background-size: 74px 74px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .45), transparent 85%);
    opacity: .18;
    pointer-events: none;
    position: absolute;
}

.landing-hero__inner {
    align-items: center;
    display: grid;
    gap: clamp(45px, 8vw, 120px);
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
    min-height: inherit;
    position: relative;
    z-index: 1;
}

.landing-hero__copy {
    max-width: 750px;
}

.landing-hero h1 {
    font-family: Manrope, Arial, sans-serif;
    font-size: clamp(52px, 6.5vw, 101px);
    letter-spacing: -.072em;
    line-height: .92;
    margin: 0;
}

.landing-hero__copy > p:not(.landing-kicker) {
    color: var(--landing-muted);
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.72;
    margin: 30px 0 0;
    max-width: 660px;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 36px;
}

.landing-hero__visual {
    aspect-ratio: .88;
    max-height: 560px;
    perspective: 1200px;
    position: relative;
    width: 100%;
}

.landing-hero__window {
    background: #f1efe7;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    box-shadow: 0 45px 100px rgba(0, 0, 0, .38);
    color: #17171b;
    overflow: hidden;
    position: absolute;
}

.landing-hero__window::before {
    background:
        radial-gradient(circle at 15px 50%, #ff6d5f 0 3px, transparent 4px),
        radial-gradient(circle at 27px 50%, #ffc44e 0 3px, transparent 4px),
        radial-gradient(circle at 39px 50%, #50c878 0 3px, transparent 4px),
        #dedcd4;
    content: "";
    display: block;
    height: 28px;
}

.landing-hero__window--back {
    height: 66%;
    inset: 5% 12% auto 0;
    transform: rotate(-8deg) translateZ(-40px);
}

.landing-hero__window--back span {
    background: #6957f5;
    display: block;
    height: 43%;
    margin: 10% 8% 7%;
}

.landing-hero__window--back i {
    background: #c8c4ba;
    display: block;
    height: 7px;
    margin: 9px 8%;
    width: 58%;
}

.landing-hero__window--back i:last-child {
    width: 39%;
}

.landing-hero__window--front {
    align-items: flex-start;
    bottom: 3%;
    display: flex;
    flex-direction: column;
    height: 70%;
    justify-content: flex-end;
    padding: 9%;
    right: 0;
    transform: rotate(6deg);
    width: 78%;
}

.landing-hero__window--front::after {
    background: linear-gradient(135deg, var(--landing-accent), #6957f5);
    border-radius: 45% 45% 5px 5px;
    content: "";
    inset: 12% 12% 43%;
    position: absolute;
}

.landing-hero__window--front strong {
    font: 800 clamp(58px, 7vw, 105px)/.8 Manrope, sans-serif;
    letter-spacing: -.08em;
}

.landing-hero__window--front small {
    font-size: 11px;
    font-weight: 800;
    margin-top: 13px;
    text-transform: uppercase;
}

.landing-collection {
      padding-block: clamp(31px, 1vw, 51px);
}

.landing-collection__heading {
    align-items: flex-end;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 48px;
}

.landing-collection__heading h2,
.landing-cta h2,
.landing-single h1 {
    font-family: Manrope, Arial, sans-serif;
    letter-spacing: -.06em;
    line-height: .98;
    margin: 0;
}

.landing-collection__heading h2 {
    font-size: clamp(38px, 5vw, 72px);
    max-width: 760px;
}

.landing-collection__heading > p {
    color: var(--landing-muted);
    flex: 0 0 auto;
    font-size: 12px;
    letter-spacing: .08em;
    margin: 0 0 7px;
    text-transform: uppercase;
}

.landing-collection__heading > p strong {
    color: var(--landing-text);
}

.landing-filters {
    align-items: center;
    backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--landing-bg) 88%, transparent);
    border-block: 1px solid var(--landing-line);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
    margin-bottom: 36px;
    padding-block: 15px;
    position: sticky;
    top: 77px;
    z-index: 20;
}

.landing-filter-row {
    display: flex;
    gap: 7px;
    min-width: 0;
    overflow-x: auto;
    padding: 3px;
    scrollbar-width: none;
}

.landing-filter-row::-webkit-scrollbar {
    display: none;
}

.landing-filter-row button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    color: var(--landing-muted);
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    min-height: 39px;
    padding: 0 14px;
}

.landing-filter-row button small {
    font-size: 9px;
    opacity: .58;
}

.landing-filter-row button:hover,
.landing-filter-row button.is-active {
    background: var(--landing-text);
    border-color: var(--landing-text);
    color: var(--landing-bg);
}

.landing-search {
    align-items: center;
    background: var(--landing-surface);
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    display: flex;
    min-height: 43px;
    padding: 0 5px;
}

.landing-search > span:first-child {
    color: var(--landing-muted);
    font-size: 20px;
    margin-right: 9px;
}

.landing-search input {
    background: transparent;
    border: 0;
    color: var(--landing-text);
    min-width: 0;
    outline: 0;
    width: 100%;
    min-height: 35px;
    border-radius: 999px;
    padding: 15px;
}

.landing-search input::placeholder {
    color: #74737b;
}

.landing-grid {
    display: grid;
    gap: clamp(28px, 3vw, 46px) clamp(16px, 2vw, 27px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-card[hidden] {
    display: none;
}

.landing-card {
    min-width: 0;
}

.landing-card__preview {
    display: block;
}

.landing-card__image {
    aspect-ratio: 1.45;
    background: var(--landing-surface);
    border: 1px solid var(--landing-line);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: border-color .35s, box-shadow .35s, transform .35s;
}

.landing-card__image::after {
    background: linear-gradient(transparent 42%, rgba(0, 0, 0, .75));
    content: "";
    inset: 0;
    opacity: .25;
    pointer-events: none;
    position: absolute;
    transition: opacity .3s;
}

.landing-card__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2, .75, .25, 1);
    width: 100%;
}

.landing-card__preview:hover .landing-card__image,
.landing-card__preview:focus-visible .landing-card__image {
    border-color: color-mix(in srgb, var(--landing-accent) 65%, transparent);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .42);
    transform: translateY(-6px);
}

.landing-card__preview:hover .landing-card__image img,
.landing-card__preview:focus-visible .landing-card__image img {
    transform: scale(1.035);
}

.landing-card__preview:hover .landing-card__image::after,
.landing-card__preview:focus-visible .landing-card__image::after {
    opacity: 1;
}

.landing-card__label,
.landing-card__open {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    position: absolute;
    z-index: 2;
}

.landing-card__label {
    background: rgba(9, 9, 11, .65);
    left: 12px;
    padding: 8px 11px;
    top: 12px;
}

.landing-card__open {
    background: var(--landing-text);
    bottom: 16px;
    color: var(--landing-bg);
    left: 50%;
    opacity: 0;
    padding: 10px 15px;
    transform: translate(-50%, 12px);
    transition: opacity .3s, transform .3s;
    white-space: nowrap;
}

.landing-card__open i {
    font-style: normal;
    margin-left: 5px;
}

.landing-card__preview:hover .landing-card__open,
.landing-card__preview:focus-visible .landing-card__open {
    opacity: 1;
    transform: translate(-50%, 0);
}

.landing-card.is-unavailable {
    opacity: .72;
}

.landing-card.is-unavailable .landing-card__open {
    display: none;
}

.landing-card__placeholder {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(105, 87, 245, .35), rgba(215, 255, 79, .18)),
        var(--landing-surface);
    color: var(--landing-muted);
    display: flex;
    font-size: 12px;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.landing-card__body {
    padding: 18px 3px 0;
}

.landing-card__meta {
    align-items: center;
    color: var(--landing-muted);
    display: flex;
    font-size: 9px;
    font-weight: 700;
    gap: 12px;
    justify-content: space-between;
    letter-spacing: .09em;
    min-height: 18px;
    text-transform: uppercase;
}

.landing-card__meta small {
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-card h3 {
    font: 700 clamp(19px, 2vw, 25px)/1.2 Manrope, sans-serif;
    letter-spacing: -.04em;
    margin: 8px 0 0;
}

.landing-card__body > p {
    color: var(--landing-muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 10px 0 0;
}

.landing-empty {
    border: 1px dashed var(--landing-line);
    border-radius: 12px;
    grid-column: 1 / -1;
    padding: 70px 24px;
    text-align: center;
}

.landing-empty[hidden] {
    display: none;
}

.landing-empty strong {
    display: block;
    font: 700 27px/1.2 Manrope, sans-serif;
    letter-spacing: -.04em;
}

.landing-empty p {
    color: var(--landing-muted);
    margin: 10px 0 0;
}

.landing-empty button {
    background: var(--landing-accent);
    border: 0;
    border-radius: 999px;
    color: #111;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    margin-top: 22px;
    padding: 12px 18px;
}

.landing-cta {
    background: var(--landing-accent);
    border-radius: 10px;
    color: #10100e;
    margin-bottom: clamp(80px, 10vw, 145px);
    overflow: hidden;
    padding: clamp(45px, 7vw, 95px);
    position: relative;
}

.landing-cta::after {
    border: 1px solid rgba(0, 0, 0, .16);
    border-radius: 50%;
    content: "";
    height: 460px;
    position: absolute;
    right: -130px;
    top: -230px;
    width: 460px;
}

.landing-cta .landing-kicker {
    color: rgba(0, 0, 0, .58);
}

.landing-cta h2 {
    font-size: clamp(44px, 6.5vw, 92px);
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.landing-cta > p:not(.landing-kicker) {
    font-size: 15px;
    line-height: 1.7;
    max-width: 590px;
    position: relative;
    z-index: 1;
}

.landing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

/* Full-screen live preview. */
.landing-preview[hidden] {
    display: none !important;
}

.landing-preview {
    align-items: center;
    background: rgba(4, 4, 5, .88);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 2vh 1.5vw;
    position: fixed;
    transition: opacity .22s;
    z-index: 1000;
}

.landing-preview.is-open {
    opacity: 1;
}

.landing-preview__window {
    background: #0e0e10;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 96vh;
    max-height: 1100px;
    overflow: hidden;
    transform: scale(.975) translateY(8px);
    transition: transform .22s;
    width: 97vw;
}

.landing-preview.is-open .landing-preview__window {
    transform: none;
}

.landing-preview__toolbar {
    align-items: center;
    border-bottom: 1px solid var(--landing-line);
    color: var(--landing-text);
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
    min-height: 68px;
    padding: 9px 12px;
}

.landing-preview__close {
    align-items: center;
    background: transparent;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    color: var(--landing-text);
    cursor: pointer;
    display: flex;
    font-size: 11px;
    font-weight: 800;
    gap: 7px;
    min-height: 40px;
    padding: 0 14px;
}

.landing-preview__close span:first-child {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.landing-preview__close:hover {
    background: #fff;
    color: #111;
}

.landing-preview__identity {
    min-width: 120px;
}

.landing-preview__identity strong,
.landing-preview__identity small {
    display: block;
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-preview__identity strong {
    font: 700 13px/1.2 Manrope, sans-serif;
}

.landing-preview__identity small {
    color: var(--landing-muted);
    font-size: 9px;
    margin-top: 4px;
    text-transform: uppercase;
}

.landing-preview__viewports {
    background: #050506;
    border: 1px solid var(--landing-line);
    border-radius: 9px;
    display: flex;
    gap: 3px;
    margin-left: auto;
    padding: 3px;
}

.landing-preview__viewports button {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--landing-muted);
    cursor: pointer;
    font-size: 10px;
    min-height: 32px;
    padding: 0 11px;
}

.landing-preview__viewports button.is-active {
    background: #2b2b30;
    color: #fff;
}

.landing-preview__actions {
    align-items: center;
    display: flex;
    gap: 6px;
}

.landing-preview__actions a {
    align-items: center;
    border: 1px solid var(--landing-line);
    border-radius: 8px;
    color: var(--landing-text);
    display: flex;
    font-size: 10px;
    font-weight: 800;
    min-height: 39px;
    padding: 0 12px;
    text-decoration: none;
    white-space: nowrap;
}

.landing-preview__actions a:hover {
    background: #fff;
    color: #111;
}

.landing-preview__actions .landing-preview__hire {
    background: var(--landing-accent);
    border-color: var(--landing-accent);
    color: #111;
}

.landing-preview__actions .landing-preview__hire--upwork {
    background: #14a800;
    border-color: #14a800;
    color: #fff;
}

.landing-preview__stage {
    align-items: center;
    background: #050506;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
    padding: 14px;
}

.landing-preview__browser {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    transition: width .45s cubic-bezier(.2, .75, .25, 1);
    width: 100%;
}

.landing-preview__browser[data-viewport="tablet"] {
    width: min(820px, 100%);
}

.landing-preview__browser[data-viewport="mobile"] {
    width: min(390px, 100%);
}

.landing-preview__browserbar {
    align-items: center;
    background: #eeece7;
    color: #696762;
    display: flex;
    flex: 0 0 34px;
    font-size: 9px;
    justify-content: center;
    position: relative;
}

.landing-preview__browserbar > span {
    display: flex;
    gap: 5px;
    left: 11px;
    position: absolute;
}

.landing-preview__browserbar i {
    background: #c4c0b8;
    border-radius: 50%;
    display: block;
    height: 7px;
    width: 7px;
}

.landing-preview__browserbar i:first-child {
    background: #ff6d5f;
}

.landing-preview__browserbar i:nth-child(2) {
    background: #ffc44e;
}

.landing-preview__browserbar i:last-child {
    background: #50c878;
}

.landing-preview__browserbar small {
    background: #dedbd4;
    border-radius: 999px;
    max-width: 45%;
    overflow: hidden;
    padding: 6px 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-preview iframe {
    background: #fff;
    border: 0;
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}

.landing-preview__loader {
    align-items: center;
    background: #f4f2ec;
    color: #65635e;
    display: flex;
    font-size: 11px;
    gap: 11px;
    inset: 34px 0 0;
    justify-content: center;
    position: absolute;
    z-index: 2;
}

.landing-preview__loader[hidden] {
    display: none;
}

.landing-preview__loader i {
    animation: landing-loader .75s linear infinite;
    border: 2px solid #d0cdc5;
    border-radius: 50%;
    border-top-color: #17171b;
    height: 20px;
    width: 20px;
}

@keyframes landing-loader {
    to { transform: rotate(360deg); }
}

/* Individual portfolio item. */
.landing-single__inner {
    padding-block: 50px 120px;
}

.landing-breadcrumbs {
    align-items: center;
    color: var(--landing-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    gap: 8px;
    margin-bottom: clamp(55px, 8vw, 105px);
}

.landing-breadcrumbs a:hover {
    color: var(--landing-text);
}

.landing-breadcrumbs b {
    color: var(--landing-text);
    font-weight: 600;
}

.landing-single__header {
    align-items: flex-end;
    display: grid;
    gap: 45px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 50px;
}

.landing-single h1 {
    font-size: clamp(50px, 7vw, 100px);
    max-width: 970px;
}

.landing-single__header > div:first-child > p:not(.landing-kicker) {
    color: var(--landing-muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 25px 0 0;
    max-width: 660px;
}

.landing-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.landing-single__image {
    background: var(--landing-surface);
    border: 1px solid var(--landing-line);
    border-radius: 10px;
    min-height: 340px;
    overflow: hidden;
}

.landing-single__image img {
    display: block;
    height: auto;
    width: 100%;
}

.landing-single__image .landing-card__placeholder {
    min-height: 340px;
}

.landing-single__content {
    display: grid;
    gap: clamp(50px, 8vw, 120px);
    grid-template-columns: minmax(190px, .35fr) minmax(0, 1fr);
    margin: 70px auto 0;
    max-width: 1080px;
}

.landing-single__content aside p {
    border-top: 1px solid var(--landing-line);
    margin: 0;
    padding: 17px 0;
}

.landing-single__content aside small,
.landing-single__content aside strong {
    display: block;
}

.landing-single__content aside small {
    color: var(--landing-muted);
    font-size: 9px;
    letter-spacing: .12em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.landing-single__content aside strong {
    font-size: 13px;
}

.landing-single__content article {
    color: #d3d1cb;
    font-size: 17px;
    line-height: 1.85;
}

.landing-single__content article > :first-child {
    margin-top: 0;
}

.landing-single__content article h2,
.landing-single__content article h3 {
    color: var(--landing-text);
    font-family: Manrope, sans-serif;
    letter-spacing: -.04em;
    line-height: 1.15;
}

/* Compact footer used outside the home page. */
body.post-type-archive-landing > footer,
body.tax-landing_category > footer,
body.single-landing > footer {
    background: var(--landing-bg);
    border-top: 1px solid var(--landing-line);
    color: var(--landing-text);
    margin: 0;
    padding: 0;
}

body.post-type-archive-landing > footer .footer-inner,
body.tax-landing_category > footer .footer-inner,
body.single-landing > footer .footer-inner {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: auto;
    min-height: 120px;
    width: min(1280px, calc(100% - 40px));
}

body.post-type-archive-landing > footer nav,
body.tax-landing_category > footer nav,
body.single-landing > footer nav {
    display: flex;
    gap: 18px;
}

body.post-type-archive-landing > footer p,
body.tax-landing_category > footer p,
body.single-landing > footer p,
body.post-type-archive-landing > footer span,
body.tax-landing_category > footer span,
body.single-landing > footer span {
    color: var(--landing-muted);
    font-size: 11px;
}

@media (max-width: 1080px) {
    .landing-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(290px, .7fr);
    }

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

    .landing-preview__identity {
        display: none;
    }

    .landing-preview__actions a[data-preview-external] {
        display: none;
    }
}

@media (max-width: 780px) {
    .landing-hero {
        min-height: auto;
    }

    .landing-hero__inner {
        grid-template-columns: 1fr;
        padding-block: 82px 90px;
    }

    .landing-hero__visual {
        margin: auto;
        max-width: 500px;
        min-height: 410px;
    }

    .landing-collection__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .landing-filters {
        gap: 10px;
        grid-template-columns: 1fr;
        top: 69px;
    }

    .landing-search {
        grid-row: 1;
    }

    .landing-single__header,
    .landing-single__content {
        grid-template-columns: 1fr;
    }

    .landing-single__actions {
        justify-content: flex-start;
    }

    .landing-preview {
        padding: 0;
    }

    .landing-preview__window {
        border: 0;
        border-radius: 0;
        height: 100dvh;
        max-height: none;
        width: 100vw;
    }

    .landing-preview__toolbar {
        align-items: center;
        flex-wrap: wrap;
        gap: 7px;
        padding: 8px;
    }

    .landing-preview__close {
        flex: 0 0 auto;
    }

    .landing-preview__viewports {
        margin-left: auto;
    }

    .landing-preview__viewports button {
        padding-inline: 9px;
    }

    .landing-preview__actions {
        display: grid;
        flex: 0 0 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-preview__actions a {
        justify-content: center;
    }

    .landing-preview__stage {
        padding: 8px;
    }

    body.post-type-archive-landing > footer .footer-inner,
    body.tax-landing_category > footer .footer-inner,
    body.single-landing > footer .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 35px;
    }
}

@media (max-width: 580px) {
    .landing-hero h1 {
        font-size: clamp(46px, 14vw, 66px);
    }

    .landing-hero__actions .landing-button {
        width: 100%;
    }

    .landing-hero__visual {
        min-height: 340px;
    }

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

    .landing-card__open {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    .landing-card__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .landing-card__meta small {
        max-width: 100%;
    }

    .landing-cta {
        border-radius: 0;
        margin-inline: -14px;
        padding-inline: 28px;
    }

    .landing-cta__actions .landing-button {
        width: 100%;
    }

    .landing-preview__close {
        padding: 0 11px;
    }

    .landing-preview__close span:last-child {
        font-size: 10px;
    }

    .landing-preview__viewports button {
        font-size: 0;
        min-width: 37px;
        padding: 0;
    }

    .landing-preview__viewports button::after {
        font-size: 10px;
    }

    .landing-preview__viewports button[data-preview-viewport="desktop"]::after { content: "D"; }
    .landing-preview__viewports button[data-preview-viewport="tablet"]::after { content: "T"; }
    .landing-preview__viewports button[data-preview-viewport="mobile"]::after { content: "M"; }

    .landing-preview__stage {
        padding: 5px;
    }

    .landing-preview__browserbar small {
        max-width: 60%;
    }

    body.post-type-archive-landing > footer nav,
    body.tax-landing_category > footer nav,
    body.single-landing > footer nav {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-portfolio *,
    .landing-preview * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .landing-preview__loader i {
        animation: none;
    }
}
.site-header{
    background:var(--landing-bg);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
}
#wpwhub-logo {
    text-align: center;
    border: 0.5px double rgba(37, 34, 34, 0.25);
    border-width: 3px 0;
    font: 700 1.5em / 1 "Oswald", sans-serif;
    padding: .125em .25em;
    display: block;
    margin: 0 auto;
    background: url(https://wpwhub.me/wp-content/uploads/2026/08/anim-logo.webp) repeat-y;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 80s linear infinite;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
}
