:root {
    --bg: #f5f9fb;
    --bg-strong: #eef6f8;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-deep: #dff0ee;
    --ink: #0d2431;
    --ink-soft: #44606d;
    --line: rgba(17, 54, 74, 0.12);
    --line-strong: rgba(17, 54, 74, 0.2);
    --green: #159a8c;
    --green-deep: #0b7f75;
    --blue: #0f6fa6;
    --blue-deep: #0a547d;
    --shadow: 0 24px 70px rgba(18, 49, 68, 0.09);
    --shadow-soft: 0 12px 30px rgba(18, 49, 68, 0.06);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shell: min(1180px, calc(100% - 2rem));
    --shell-wide: min(1320px, calc(100% - 2rem));
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(21, 154, 140, 0.1), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(15, 111, 166, 0.12), transparent 22%),
        linear-gradient(180deg, #f9fcfd 0%, var(--bg) 35%, #f6fafb 100%);
    color: var(--ink);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        radial-gradient(rgba(13, 36, 49, 0.22) 0.6px, transparent 0.6px),
        radial-gradient(rgba(13, 36, 49, 0.12) 0.6px, transparent 0.6px);
    background-position: 0 0, 12px 12px;
    background-size: 24px 24px;
}

main,
section,
header,
footer {
    width: 100%;
    max-width: 100%;
}

main {
    overflow-x: clip;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(21, 154, 140, 0.14), 0 0 0 1px rgba(21, 154, 140, 0.38);
}

p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.8rem;
    font-family: "Abel", sans-serif;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(3.8rem, 8.8vw, 7.6rem);
}

h2 {
    font-size: clamp(2.5rem, 5.8vw, 4.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

small {
    color: var(--ink-soft);
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.shell-wide {
    width: var(--shell-wide);
}

.shell-narrow {
    width: min(780px, calc(100% - 2rem));
    margin: 0 auto;
}

.skip-link,
.sr-only,
.hp {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 1rem;
    padding: 0.75rem 1rem;
    background: var(--ink);
    color: #fff;
    z-index: 1000;
    border-radius: 999px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--blue-deep);
}

.eyebrow::before {
    content: "";
    width: 1.75rem;
    height: 1px;
    background: linear-gradient(90deg, var(--green), var(--blue));
}

.lede {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 60ch;
}

.button-row,
.filter-row,
.tag-list,
.hero-tags,
.social-links,
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.2rem;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}

.button:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
}

.button:active {
    transform: translateY(0);
}

.button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.button-primary {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: #fff;
    box-shadow: 0 18px 35px rgba(17, 109, 143, 0.2);
}

.button-primary:hover {
    background: linear-gradient(135deg, #19a493, #1179af);
    box-shadow: 0 22px 42px rgba(17, 109, 143, 0.26);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.74);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.ghost-link,
.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    color: var(--blue-deep);
}

.footer-links a,
.social-links a {
    position: relative;
    display: inline-flex;
    width: fit-content;
}

.ghost-link::after,
.text-link::after,
.footer-links a::after,
.social-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.08rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.ghost-link:hover::after,
.ghost-link:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.social-links a:hover::after,
.social-links a:focus-visible::after {
    transform: scaleX(1);
}

.ghost-link span {
    display: inline-grid;
    place-items: center;
    min-width: 1.7rem;
    height: 1.7rem;
    margin-left: 0.35rem;
    border-radius: 999px;
    background: rgba(15, 111, 166, 0.1);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1rem 0;
    backdrop-filter: blur(22px);
    background: rgba(245, 249, 251, 0.72);
    border-bottom: 1px solid rgba(17, 54, 74, 0.05);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--blue));
    box-shadow: 0 12px 22px rgba(16, 103, 133, 0.17);
    font-family: "Abel", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.brand__text strong,
.brand__text small {
    display: block;
}

.brand__text small {
    color: var(--ink-soft);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
}

.site-nav a {
    position: relative;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--ink-soft);
    transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.36rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
}

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

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.27rem auto;
    background: var(--ink);
}

.flash-stack {
    padding-top: 1rem;
}

.flash {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
    font-weight: 700;
}

.flash-success {
    background: rgba(21, 154, 140, 0.12);
    color: var(--green-deep);
}

.flash-error {
    background: rgba(181, 65, 65, 0.1);
    color: #8d2424;
}

.hero,
.page-hero,
.project-hero,
.article-hero {
    padding: clamp(4rem, 9vw, 8.5rem) 0 3rem;
}

.hero-grid,
.about-hero,
.product-hero,
.project-hero__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: 1.15fr 0.95fr;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
    min-height: 34rem;
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
}

.hero-orbit--a {
    inset: 2rem 4rem auto auto;
    width: 13rem;
    height: 13rem;
    background: radial-gradient(circle at 30% 30%, rgba(21, 154, 140, 0.42), transparent 70%);
}

.hero-orbit--b {
    inset: auto auto 0 0;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle at 50% 50%, rgba(15, 111, 166, 0.25), transparent 70%);
}

.hero-panel,
.newsletter-card,
.cta-banner,
.side-card,
.portrait-card,
.card,
.service-card,
.proof-card,
.footer-card,
.gallery-item,
.admin-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
}

.hero-panel {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-lg);
    min-height: 100%;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(223, 240, 238, 0.78)),
        url("../images/grid-noise.svg");
}

.metric-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    display: grid;
    gap: 1rem;
}

.metric-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.metric-list strong {
    font-family: "Abel", sans-serif;
    font-size: 2rem;
    color: var(--green-deep);
}

.hero-tags span,
.chip,
.filter-pill,
.tag-list a,
.tag-list li,
.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 2.3rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
}

.filter-pill.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.band {
    padding: 1.2rem 0 0;
}

.band-grid {
    display: grid;
    gap: 2rem;
    align-items: end;
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(15, 111, 166, 0.06), rgba(21, 154, 140, 0.07));
    border: 1px solid var(--line);
}

.section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-contrast {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(233, 245, 247, 0.68));
}

.section-shelf {
    overflow: hidden;
}

.section-head,
.split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-head {
    max-width: 54rem;
}

.section-head--compact {
    margin-bottom: 0;
}

.service-grid,
.proof-grid,
.card-grid,
.footer-grid,
.admin-grid {
    display: grid;
    gap: 1.35rem;
}

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

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

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

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

.service-card,
.proof-card,
.card {
    padding: 1.4rem;
    border-radius: var(--radius-md);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover,
.service-card:hover,
.proof-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 154, 140, 0.24);
    box-shadow: 0 28px 60px rgba(16, 53, 72, 0.11);
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(21, 154, 140, 0.14), rgba(15, 111, 166, 0.16));
    color: var(--green-deep);
    font-size: 1.6rem;
}

.card-media {
    display: block;
    overflow: hidden;
    border-radius: 1.2rem;
    margin-bottom: 1rem;
}

.card-media img,
.project-hero__media img,
.product-hero__media img,
.hero-image,
.portrait-card img {
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
    border-radius: inherit;
}

.card-media img {
    transition: transform 0.6s ease;
}

.card:hover .card-media img {
    transform: scale(1.05);
}

.card-body h3 {
    margin-top: 0.9rem;
}

.card-meta,
.project-meta,
.summary-row,
.cart-row,
.footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.shelf {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.6rem;
    align-items: start;
}

.card-stack {
    display: grid;
    gap: 1.2rem;
}

.newsletter-card,
.cta-banner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    grid-template-columns: 1fr auto;
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.newsletter-form,
.stack-form {
    display: grid;
    gap: 0.9rem;
}

.newsletter-form {
    grid-template-columns: minmax(0, 21rem) auto;
    align-items: center;
}

.blog-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    margin: 1.6rem 0 1.2rem;
    max-width: 44rem;
}

.newsletter-form input,
.blog-search input,
.contact-form input,
.contact-form textarea,
.contact-form select,
.stack-form input,
.stack-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    font: inherit;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.newsletter-form input:focus,
.blog-search input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.stack-form input:focus,
.stack-form textarea:focus {
    border-color: rgba(21, 154, 140, 0.46);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 154, 140, 0.1);
}

.newsletter-form input.is-valid,
.blog-search input.is-valid,
.contact-form input.is-valid,
.contact-form textarea.is-valid,
.contact-form select.is-valid,
.stack-form input.is-valid,
.stack-form textarea.is-valid {
    border-color: rgba(21, 154, 140, 0.42);
    box-shadow: 0 0 0 3px rgba(21, 154, 140, 0.08);
}

.newsletter-form input.is-invalid,
.blog-search input.is-invalid,
.contact-form input.is-invalid,
.contact-form textarea.is-invalid,
.contact-form select.is-invalid,
.stack-form input.is-invalid,
.stack-form textarea.is-invalid {
    border-color: rgba(176, 52, 52, 0.42);
    box-shadow: 0 0 0 3px rgba(176, 52, 52, 0.08);
}

.newsletter-form.is-success,
.contact-form.is-success,
.stack-form.is-success {
    animation: formSuccess 0.42s ease-out;
}

@keyframes formSuccess {
    0% {
        transform: translateY(0);
    }
    35% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.contact-form,
.stack-form {
    display: grid;
    gap: 1rem;
}

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

.contact-form label,
.stack-form label {
    display: grid;
    gap: 0.4rem;
    font-weight: 700;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.checkbox-row input {
    width: auto;
}

.fine-print {
    font-size: 0.92rem;
}

.proof-section .proof-card strong {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 2.3rem;
    font-family: "Abel", sans-serif;
    color: var(--blue-deep);
}

.site-footer {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 0 2rem;
    margin-top: clamp(2rem, 6vw, 5rem);
    overflow: hidden;
    color: #edf7fa;
    background:
        radial-gradient(circle at top right, rgba(21, 154, 140, 0.18), transparent 28%),
        radial-gradient(circle at 18% 30%, rgba(15, 111, 166, 0.2), transparent 32%),
        linear-gradient(180deg, rgba(9, 35, 48, 0.98), rgba(6, 23, 33, 1));
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 85%);
}

.footer-scene {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
    gap: 2rem 1.6rem;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: calc(var(--radius-lg) + 8px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 24%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.footer-scene__lead,
.footer-scene__links,
.footer-scene__social,
.footer-scene__meta {
    position: relative;
    z-index: 1;
}

.footer-scene__serial {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(237, 247, 250, 0.58);
}

.footer-scene h2 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 7vw, 6.6rem);
    line-height: 0.9;
    color: #f5fbfd;
}

.footer-scene__copy {
    max-width: 34rem;
    font-size: clamp(1.02rem, 1.9vw, 1.22rem);
    color: rgba(237, 247, 250, 0.76);
}

.footer-scene__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.footer-scene__mail {
    color: #c2ece8;
}

.footer-scene__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
    align-content: end;
    padding-top: 1rem;
}

.footer-scene__group-title {
    margin: 0 0 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(237, 247, 250, 0.58);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.footer-links a,
.footer-scene__social a {
    color: #edf7fa;
}

.footer-scene__social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-scene__meta {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-scene__meta p,
.footer-scene .eyebrow,
.footer-scene small {
    color: rgba(237, 247, 250, 0.62);
}

.page-hero--compact {
    padding-bottom: 1rem;
}

.project-layout,
.two-column,
.checkout-layout,
.contact-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
    grid-template-columns: 1.15fr 0.85fr;
}

.project-sidebar,
.download-list {
    display: grid;
    gap: 1rem;
}

.rich-content {
    font-size: 1.04rem;
}

.rich-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-top: 2rem;
}

.rich-content ul,
.rich-content ol {
    padding-left: 1.2rem;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-article {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(226, 241, 241, 0.82));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.featured-article__media,
.featured-article__media img {
    height: 100%;
}

.featured-article__media {
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
}

.featured-article__media img {
    object-fit: cover;
    aspect-ratio: 16 / 11;
}

.featured-article__content {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.featured-article__content .card-meta {
    justify-content: flex-start;
}

.featured-article__content h3 {
    margin-bottom: 0;
}

.gallery-item,
.portrait-card,
.product-hero__media,
.project-hero__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.summary-row {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}

.summary-row--total {
    font-size: 1.1rem;
    border-bottom: 0;
}

.cart-table {
    display: grid;
    gap: 1rem;
}

.cart-row {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    grid-template-columns: 7rem 1fr auto auto;
    display: grid;
}

.cart-row img {
    width: 100%;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cart-row input {
    width: 5.5rem;
    padding: 0.8rem;
    border-radius: 0.9rem;
    border: 1px solid var(--line);
}

.cart-actions,
.empty-state {
    padding: 1.4rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(21, 154, 140, 0.08);
    border: 1px solid rgba(21, 154, 140, 0.16);
    color: var(--green-deep);
    font-weight: 800;
}

.download-link::after {
    content: "Download";
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.2rem 0 1.8rem;
}

.product-price-row strong {
    font-size: 2rem;
    font-family: "Abel", sans-serif;
}

.price-strike {
    color: var(--ink-soft);
    text-decoration: line-through;
}

.reveal {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0px), 26px, 0);
    transition: opacity 0.42s ease-out, transform 0.42s ease-out;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.installer-body {
    min-height: 100vh;
}

.installer-hero {
    padding-bottom: 1.25rem;
}

.installer-intro,
.installer-grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
    grid-template-columns: 0.9fr 1.1fr;
}

.installer-status-card,
.installer-panel,
.installer-check {
    padding: 1.4rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.installer-status-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-family: "Abel", sans-serif;
}

.installer-checks {
    display: grid;
    gap: 0.9rem;
}

.installer-check {
    padding: 1rem 1.1rem;
}

.installer-check.is-success {
    background: rgba(21, 154, 140, 0.08);
    border-color: rgba(21, 154, 140, 0.18);
}

.installer-check.is-error {
    background: rgba(176, 52, 52, 0.08);
    border-color: rgba(176, 52, 52, 0.18);
}

.installer-form small {
    color: var(--ink-soft);
}

.installer-divider {
    height: 1px;
    background: var(--line);
    margin: 0.4rem 0 0.2rem;
}

[data-page="home"] .site-header {
    position: sticky;
    top: 1rem;
    width: var(--shell-wide);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    box-shadow: 0 22px 44px rgba(18, 49, 68, 0.07);
    background: rgba(248, 251, 252, 0.78);
}

[data-page="home"] .site-header__inner {
    min-height: 4.5rem;
    padding: 0 1rem;
}

.home-hero,
.home-manifesto,
.home-services,
.home-work,
.home-journal,
.home-resources,
.home-proof,
.home-newsletter,
.home-closing {
    position: relative;
    padding: clamp(3rem, 7vw, 7rem) 0;
}

.hero-stage,
.services-scene,
.work-scene,
.resource-scene,
.proof-runway,
.closing-scene {
    position: relative;
}

.hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
    gap: 1.2rem 1.6rem;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: calc(var(--radius-lg) + 10px);
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(15, 111, 166, 0.14), transparent 28%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.97), rgba(231, 243, 244, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 36px 110px rgba(17, 53, 74, 0.08);
    isolation: isolate;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border-radius: calc(var(--radius-lg) + 2px);
    border: 1px solid rgba(17, 54, 74, 0.08);
    pointer-events: none;
}

.hero-stage__mesh {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(15, 111, 166, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 111, 166, 0.05) 1px, transparent 1px);
    background-size: 5.5rem 5.5rem;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 85%);
    pointer-events: none;
}

.hero-stage__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    pointer-events: none;
    max-width: 100%;
}

.hero-stage__glow--one {
    top: -2rem;
    right: -1rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(21, 154, 140, 0.24), transparent 68%);
}

.hero-stage__glow--two {
    bottom: -4rem;
    left: 32%;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(15, 111, 166, 0.18), transparent 68%);
}

.hero-stage__index {
    position: absolute;
    top: 1.6rem;
    right: 1.8rem;
    z-index: 1;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(68, 96, 109, 0.72);
}

.hero-stage__brand {
    position: absolute;
    left: 1.7rem;
    bottom: 5.6rem;
    z-index: 0;
    font-family: "Abel", sans-serif;
    font-size: clamp(4.2rem, 12vw, 9rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(13, 36, 49, 0.05);
    pointer-events: none;
}

.hero-stage__ledger {
    position: absolute;
    top: 8rem;
    right: 0.35rem;
    z-index: 1;
    transform: rotate(90deg);
    transform-origin: top right;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(68, 96, 109, 0.64);
    white-space: nowrap;
}

.hero-stage__main,
.hero-stage__aside,
.hero-stage__footer,
.hero-stage__ribbon {
    position: relative;
    z-index: 1;
}

.hero-stage__main {
    padding: clamp(2.6rem, 8vw, 5.6rem) clamp(0.6rem, 1.6vw, 1rem) 0;
}

.hero-stage h1 {
    max-width: 9ch;
    font-size: clamp(4.4rem, 10vw, 8.8rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
}

.hero-stage__kicker {
    max-width: 34rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
}

.hero-stage__lede {
    max-width: 38rem;
    margin-bottom: 1.7rem;
}

.hero-stage__actions {
    margin-bottom: 1.6rem;
}

.hero-stage__aside {
    display: grid;
    gap: 1rem;
    align-content: end;
    padding-top: 3.6rem;
}

.hero-note-stack {
    position: relative;
    display: grid;
    gap: 0.9rem;
}

.hero-note,
.service-band,
.work-feature,
.work-note,
.journal-feature,
.journal-note,
.resource-feature,
.product-spotlight,
.proof-runway__item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-note {
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-md);
}

.hero-note--focus {
    margin-right: 2.5rem;
}

.hero-note--proof {
    margin-left: 2.8rem;
    background: rgba(11, 53, 72, 0.94);
    border-color: rgba(126, 208, 203, 0.12);
}

.hero-note--proof p,
.hero-note--proof .eyebrow,
.hero-note--proof .hero-proof__meta span {
    color: rgba(239, 248, 251, 0.84);
}

.hero-note--proof .eyebrow {
    color: #7ed0cb;
}

.hero-notes__label {
    display: block;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--ink-soft);
}

.hero-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.hero-note li {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.75rem;
    align-items: center;
}

.hero-note strong {
    font-family: "Abel", sans-serif;
    font-size: 1.45rem;
    color: var(--blue-deep);
}

.hero-proof__meta,
.work-ticker,
.resource-links,
.product-list {
    display: grid;
    gap: 0.8rem;
}

.hero-proof__meta {
    margin-top: 1rem;
}

.hero-proof__meta span,
.resource-link,
.product-list__item,
.work-ticker a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.56);
}

.hero-note--proof .hero-proof__meta span {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.hero-stage__footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(17, 54, 74, 0.08);
}

.hero-stage__ribbon {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding-top: 0.2rem;
}

.hero-stage__ribbon span {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 54, 74, 0.1);
    background: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    color: var(--blue-deep);
}

.manifesto-strip {
    display: grid;
    grid-template-columns: 0.34fr 1.08fr 0.58fr;
    gap: 1.4rem;
    align-items: start;
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 54, 74, 0.1);
}

.manifesto-strip__meta {
    display: grid;
    gap: 0.8rem;
}

.manifesto-strip__serial,
.journal-intro__serial,
.resource-column__serial {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(68, 96, 109, 0.74);
}

.manifesto-strip__statement h2 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 0.95;
}

.manifesto-strip__statement p,
.manifesto-strip__aside p {
    max-width: 30rem;
    font-size: clamp(1.06rem, 1.9vw, 1.28rem);
}

.manifesto-strip__aside {
    padding-top: 4.1rem;
}

.services-scene {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.6rem;
    align-items: start;
}

.services-scene__intro {
    position: sticky;
    top: 7rem;
}

.services-rail {
    display: grid;
    gap: 1rem;
}

.services-rail .service-band:nth-child(3n + 1) {
    max-width: 90%;
}

.services-rail .service-band:nth-child(3n + 2) {
    max-width: 84%;
    margin-left: auto;
}

.services-rail .service-band:nth-child(3n + 3) {
    max-width: 96%;
}

.service-band {
    display: grid;
    grid-template-columns: 4.2rem 1fr;
    gap: 1rem;
    padding: 1.4rem 1rem 1.4rem 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(17, 54, 74, 0.12);
    box-shadow: none;
    backdrop-filter: none;
}

.service-band--offset {
    margin-left: 10%;
}

.service-band__index {
    display: grid;
    place-items: start;
    font-family: "Abel", sans-serif;
    font-size: 2.6rem;
    color: var(--green-deep);
}

.service-band__content {
    display: grid;
    gap: 0.5rem;
}

.service-band__content h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.service-band__icon {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, rgba(21, 154, 140, 0.08), rgba(15, 111, 166, 0.08));
    color: var(--blue-deep);
    font-weight: 800;
}

.home-work {
    background:
        linear-gradient(180deg, rgba(227, 241, 241, 0.28), rgba(245, 249, 251, 0) 18%),
        linear-gradient(180deg, rgba(12, 41, 56, 0.98), rgba(8, 32, 44, 0.96));
    color: #eff8fb;
}

.home-work p,
.home-work .chip,
.home-work small,
.home-work .card-meta {
    color: rgba(239, 248, 251, 0.82);
}

.home-work .eyebrow,
.home-work .text-link {
    color: #7ed0cb;
}

.work-scene {
    display: grid;
    gap: 1.5rem;
}

.work-scene__ghost {
    position: absolute;
    top: -1.4rem;
    right: 0.8rem;
    font-family: "Abel", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.work-scene__head {
    display: grid;
    grid-template-columns: 1fr minmax(18rem, 24rem);
    gap: 1.4rem;
    align-items: end;
}

.work-scene__head h2 {
    max-width: 10ch;
    font-size: clamp(3rem, 6vw, 5.2rem);
}

.work-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    gap: 1rem;
}

.work-feature,
.journal-feature,
.resource-feature,
.product-spotlight {
    display: grid;
    border-radius: calc(var(--radius-lg) - 2px);
    overflow: hidden;
}

.work-feature__media,
.journal-feature__media,
.resource-feature__media,
.product-spotlight__media {
    overflow: hidden;
}

.work-feature__media img,
.journal-feature__media img,
.resource-feature__media img,
.product-spotlight__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.work-feature:hover img,
.journal-feature:hover img,
.resource-feature:hover img,
.product-spotlight:hover img,
.work-note:hover img {
    transform: scale(1.04);
}

.work-feature__media img {
    min-height: 38rem;
}

.work-feature__overlay,
.journal-feature__body,
.resource-feature__copy,
.product-spotlight__body {
    padding: 1.4rem;
}

.work-feature {
    position: relative;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.work-feature__overlay {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    width: min(32rem, calc(100% - 3rem));
    border-radius: var(--radius-md);
    background: rgba(9, 35, 48, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.work-stack,
.journal-list {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.work-stack {
    margin-top: 5rem;
}

.work-note {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    padding: 1.1rem 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: none;
}

.work-note__media {
    border-radius: 1rem;
    overflow: hidden;
}

.work-note__media img {
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.work-ticker a {
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.work-ticker small {
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.scene-action {
    display: flex;
    justify-content: flex-end;
}

.journal-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 0.8fr;
    gap: 1.2rem;
    align-items: start;
}

.journal-feature {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(225, 240, 241, 0.74));
}

.journal-feature__media img {
    min-height: 25rem;
}

.journal-note {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-md);
}

.journal-intro {
    display: grid;
    gap: 0.8rem;
    align-content: start;
}

.resource-scene {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.2rem;
}

.resource-column__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.resource-column {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.resource-column--downloads {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(225, 241, 238, 0.84));
}

.resource-column--products {
    background: linear-gradient(180deg, rgba(13, 46, 63, 0.98), rgba(11, 40, 55, 0.95));
    color: #edf7fa;
}

.resource-column--products p,
.resource-column--products .chip,
.resource-column--products small,
.resource-column--products .eyebrow {
    color: rgba(237, 247, 250, 0.82);
}

.resource-column--products .eyebrow {
    color: #7ed0cb;
}

.resource-feature {
    grid-template-columns: 1fr minmax(12rem, 15rem);
}

.resource-feature__media,
.product-spotlight__media {
    min-height: 100%;
}

.resource-feature__media img {
    min-height: 100%;
}

.product-spotlight {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-spotlight__media img {
    min-height: 18rem;
}

.product-spotlight__body strong {
    font-family: "Abel", sans-serif;
    font-size: 2rem;
}

.proof-runway {
    display: grid;
    gap: 1.2rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(17, 54, 74, 0.08);
}

.proof-runway__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.proof-runway__item {
    padding: 1.25rem;
    border-radius: var(--radius-md);
}

.proof-runway__item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-family: "Abel", sans-serif;
    color: var(--blue-deep);
}

.newsletter-card--editorial {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(225, 241, 239, 0.84)),
        radial-gradient(circle at right top, rgba(21, 154, 140, 0.08), transparent 30%);
}

.closing-scene {
    padding: clamp(2rem, 6vw, 4rem);
    border-radius: calc(var(--radius-lg) + 8px);
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(15, 111, 166, 0.14), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(227, 241, 243, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.closing-scene h2,
.closing-scene p {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.closing-scene p {
    max-width: 42rem;
}

.closing-scene__actions {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-editorial,
.services-story,
.work-gallery,
.journal-editorial,
.resources-split,
.proof-minimal,
.closing-open,
.manifesto-quiet {
    position: relative;
}

.hero-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(18rem, 0.78fr);
    gap: 1.5rem 2rem;
    min-height: min(52rem, calc(100vh - 8rem));
    padding: clamp(2rem, 4vw, 3rem) 0 0;
    isolation: isolate;
}

.hero-editorial__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-editorial__bg--grid {
    background:
        linear-gradient(rgba(15, 111, 166, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 111, 166, 0.05) 1px, transparent 1px);
    background-size: 6rem 6rem;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 88%);
}

.hero-editorial__bg--glow {
    inset: auto 0 2rem auto;
    width: min(28rem, 42%);
    height: 22rem;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(21, 154, 140, 0.18), transparent 70%);
    filter: blur(20px);
}

.hero-editorial__serial {
    position: absolute;
    top: 1.1rem;
    left: 0;
    z-index: 1;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(68, 96, 109, 0.72);
}

.hero-editorial__ghost {
    position: absolute;
    left: -0.05em;
    top: 7rem;
    z-index: 0;
    font-family: "Abel", sans-serif;
    font-size: clamp(7rem, 19vw, 16rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(13, 36, 49, 0.04);
    pointer-events: none;
}

.hero-editorial__main,
.hero-editorial__aside,
.hero-editorial__footer {
    position: relative;
    z-index: 1;
}

.hero-editorial__main {
    padding-top: clamp(4rem, 11vw, 9rem);
    max-width: 64rem;
}

.hero-editorial__poster {
    position: absolute;
    top: 1.8rem;
    left: 0;
    z-index: 0;
    font-family: "Abel", sans-serif;
    font-size: clamp(1rem, 2.1vw, 1.45rem);
    line-height: 0.9;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(13, 36, 49, 0.16);
    pointer-events: none;
}

.hero-editorial__poster span {
    display: block;
}

.hero-editorial__poster span:nth-child(2) {
    margin-left: 1.1rem;
}

.hero-editorial__poster span:nth-child(3) {
    margin-left: 2.2rem;
}

.hero-editorial__kicker {
    max-width: 38rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-deep);
}

.hero-editorial h1 {
    max-width: 10ch;
    font-size: clamp(4.8rem, 11vw, 9.4rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
}

.hero-editorial h1 span {
    display: block;
}

.hero-editorial h1 span:nth-child(2) {
    margin-left: 0.9ch;
}

.hero-editorial h1 span:nth-child(3) {
    margin-left: 0.2ch;
}

.hero-editorial h1 span:nth-child(4) {
    margin-left: 1.2ch;
}

.hero-editorial__lede {
    max-width: 38rem;
    margin-top: 1.7rem;
}

.hero-editorial__actions {
    margin-top: 2rem;
}

.hero-editorial__aside {
    display: grid;
    align-content: end;
    gap: 1rem;
    padding: 8rem 0 3rem;
}

.hero-editorial__visual {
    position: relative;
    display: block;
    width: min(21rem, 100%);
    aspect-ratio: 0.78 / 1;
    margin-left: auto;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) + 2px);
    box-shadow: 0 26px 60px rgba(17, 53, 74, 0.16);
}

.hero-editorial__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 22, 31, 0.04), rgba(6, 22, 31, 0.72));
}

.hero-editorial__visual img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.6s ease;
}

.hero-editorial__visual:hover img {
    transform: scale(1.12);
}

.hero-editorial__visual-tag,
.hero-editorial__visual-title {
    position: absolute;
    left: 1.2rem;
    z-index: 1;
    color: #eff8fb;
}

.hero-editorial__visual-tag {
    top: 1.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-editorial__visual-title {
    bottom: 1.2rem;
    max-width: 12rem;
    font-family: "Abel", sans-serif;
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    line-height: 0.95;
}

.hero-editorial__card {
    width: min(24rem, 100%);
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-editorial__card--dark {
    margin-left: auto;
    background: rgba(11, 53, 72, 0.94);
    border: 1px solid rgba(126, 208, 203, 0.12);
}

.hero-editorial__card--dark p,
.hero-editorial__card--dark .eyebrow,
.hero-editorial__card--dark .hero-editorial__meta span {
    color: rgba(239, 248, 251, 0.84);
}

.hero-editorial__card--dark .eyebrow {
    color: #7ed0cb;
}

.hero-editorial__card--light {
    margin-right: 3rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.74);
}

.hero-editorial__label {
    display: block;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--ink-soft);
}

.hero-editorial__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.hero-editorial__card li {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.75rem;
    align-items: center;
}

.hero-editorial__card strong {
    font-family: "Abel", sans-serif;
    font-size: 1.45rem;
    color: var(--blue-deep);
}

.hero-editorial__meta {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.hero-editorial__meta span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-editorial__footer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    padding-top: 1.2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(17, 54, 74, 0.08);
}

.manifesto-quiet {
    display: grid;
    grid-template-columns: 0.34fr 1.08fr 0.58fr;
    gap: 1.4rem;
    align-items: start;
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 54, 74, 0.1);
}

.manifesto-quiet__meta {
    display: grid;
    gap: 0.8rem;
}

.manifesto-quiet__serial,
.journal-editorial__serial,
.resources-split__serial {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(68, 96, 109, 0.74);
}

.manifesto-quiet__statement h2 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: 0.95;
}

.manifesto-quiet__statement p,
.manifesto-quiet__aside p {
    max-width: 30rem;
    font-size: clamp(1.06rem, 1.9vw, 1.28rem);
}

.manifesto-quiet__aside {
    padding-top: 4.1rem;
}

.services-story {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.6rem;
    align-items: start;
}

.services-story__intro {
    position: sticky;
    top: 7rem;
}

.services-story__list {
    display: grid;
    gap: 1rem;
}

.service-story {
    display: grid;
    grid-template-columns: 4.2rem 1fr;
    gap: 1rem;
    padding: 1.4rem 1rem 1.4rem 0;
    border-top: 1px solid rgba(17, 54, 74, 0.12);
}

.services-story__list .service-story:nth-child(3n + 1) {
    max-width: 88%;
}

.services-story__list .service-story:nth-child(3n + 2) {
    max-width: 82%;
    margin-left: auto;
}

.services-story__list .service-story:nth-child(3n + 3) {
    max-width: 96%;
}

.service-story__index {
    display: grid;
    place-items: start;
    font-family: "Abel", sans-serif;
    font-size: 2.6rem;
    color: var(--green-deep);
}

.service-story__content {
    display: grid;
    gap: 0.5rem;
}

.service-story__content h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.service-story__icon {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, rgba(21, 154, 140, 0.08), rgba(15, 111, 166, 0.08));
    color: var(--blue-deep);
    font-weight: 800;
}

.work-gallery {
    display: grid;
    gap: 1.5rem;
}

.work-gallery__ghost {
    position: absolute;
    top: -1.4rem;
    right: 0.8rem;
    font-family: "Abel", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.work-gallery__intro {
    display: grid;
    grid-template-columns: 1fr minmax(18rem, 24rem);
    gap: 1.4rem;
    align-items: end;
}

.work-gallery__intro h2 {
    max-width: 10ch;
    font-size: clamp(3rem, 6vw, 5.2rem);
}

.work-gallery__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(18rem, 0.84fr);
    gap: 1rem;
}

.work-gallery__featured {
    position: relative;
    overflow: hidden;
}

.work-gallery__featured-media,
.work-gallery__note-media,
.journal-editorial__feature-media,
.resources-split__feature-media,
.resources-split__product-media {
    overflow: hidden;
}

.work-gallery__featured img,
.work-gallery__note img,
.journal-editorial__feature img,
.resources-split__feature img,
.resources-split__product img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.work-gallery__featured:hover img,
.work-gallery__note:hover img,
.journal-editorial__feature:hover img,
.resources-split__feature:hover img,
.resources-split__product:hover img {
    transform: scale(1.04);
}

.work-gallery__featured img {
    min-height: 39rem;
}

.work-gallery__featured-copy {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    width: min(32rem, calc(100% - 3rem));
    padding: 1.4rem;
    border-radius: var(--radius-md);
    background: rgba(9, 35, 48, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.work-gallery__side {
    display: grid;
    gap: 1rem;
    align-content: start;
    margin-top: 5rem;
}

.work-gallery__note {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.work-gallery__note-media {
    border-radius: 1rem;
}

.work-gallery__note img {
    aspect-ratio: 1 / 1;
}

.work-gallery__ticker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.work-gallery__ticker a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-gallery__ticker small {
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.work-gallery__action {
    display: flex;
    justify-content: flex-end;
}

.journal-editorial {
    display: grid;
    grid-template-columns: 0.82fr 1.12fr 0.78fr;
    gap: 1.2rem;
    align-items: start;
}

.journal-editorial__intro {
    display: grid;
    gap: 0.8rem;
    align-content: start;
}

.journal-editorial__feature {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(225, 240, 241, 0.74));
    border-radius: calc(var(--radius-lg) - 2px);
}

.journal-editorial__feature img {
    min-height: 25rem;
}

.journal-editorial__feature-copy {
    padding: 1.4rem;
}

.journal-editorial__notes {
    display: grid;
    gap: 1rem;
}

.journal-editorial__note {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.resources-split {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 1.2rem;
    align-items: start;
}

.resources-split__downloads,
.resources-split__products {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: calc(var(--radius-lg) + 4px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.resources-split__downloads {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(225, 241, 238, 0.84));
}

.resources-split__products {
    margin-top: 4rem;
    background: linear-gradient(180deg, rgba(13, 46, 63, 0.98), rgba(11, 40, 55, 0.95));
    color: #edf7fa;
}

.resources-split__products p,
.resources-split__products .chip,
.resources-split__products small,
.resources-split__products .eyebrow {
    color: rgba(237, 247, 250, 0.82);
}

.resources-split__products .eyebrow {
    color: #7ed0cb;
}

.resources-split__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.resources-split__feature {
    display: grid;
    grid-template-columns: 1fr minmax(12rem, 15rem);
    border-radius: calc(var(--radius-lg) - 2px);
    overflow: hidden;
}

.resources-split__feature-copy,
.resources-split__product-copy {
    padding: 1.4rem;
}

.resources-split__product {
    border-radius: calc(var(--radius-lg) - 2px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.resources-split__product img {
    min-height: 18rem;
}

.resources-split__product-copy strong {
    font-family: "Abel", sans-serif;
    font-size: 2rem;
}

.resources-split__links,
.resources-split__product-list {
    display: grid;
    gap: 0.8rem;
}

.resources-split__link,
.resources-split__product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.56);
}

.resources-split__products .resources-split__product-link {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.proof-minimal {
    display: grid;
    gap: 1.2rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(17, 54, 74, 0.08);
}

.proof-minimal__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.proof-minimal__item {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.proof-minimal__item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-family: "Abel", sans-serif;
    color: var(--blue-deep);
}

.closing-open {
    padding: clamp(1rem, 3vw, 2rem) 0 0;
    border-top: 1px solid rgba(17, 54, 74, 0.08);
}

.closing-open h2 {
    max-width: 12ch;
    font-size: clamp(3rem, 7vw, 6rem);
}

.closing-open p {
    max-width: 42rem;
}

.closing-open__actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

[data-scroll-shift] {
    will-change: transform;
}

@media (max-width: 1100px) {
    .hero-grid,
    .about-hero,
    .product-hero,
    .project-hero__grid,
    .shelf,
    .project-layout,
    .two-column,
    .checkout-layout,
    .contact-layout,
    .footer-grid,
    .installer-intro,
    .installer-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .proof-grid,
    .card-grid,
    .card-grid--portfolio,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        gap: 1.4rem;
    }

    .hero-stage,
    .services-scene,
    .work-grid,
    .journal-grid,
    .resource-scene,
    .manifesto-strip,
    .work-scene__head,
    .resource-feature,
    .proof-runway__stats {
        grid-template-columns: 1fr;
    }

    .services-scene__intro {
        position: static;
    }

    .hero-stage__brand,
    .hero-stage__ledger,
    .work-scene__ghost {
        display: none;
    }

    .services-rail .service-band:nth-child(n) {
        max-width: 100%;
    }

    .hero-note--focus,
    .hero-note--proof,
    .service-band--offset,
    .scene-action {
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
    }

    .work-ticker {
        grid-template-columns: 1fr;
    }

    .manifesto-strip__aside {
        padding-top: 0;
    }
}

@media (max-width: 860px) {
    [data-page="home"] .site-header {
        top: 0.6rem;
        width: calc(100% - 1rem);
    }

    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    .site-nav,
    .site-header__actions {
        display: none;
    }

    .site-nav.is-open {
        display: flex;
        grid-column: 1 / -1;
        flex-direction: column;
        padding-top: 1rem;
        background: transparent;
    }

    .site-header__actions.is-open {
        display: flex;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
    }

    .section-head,
    .split-head,
    .band-grid,
    .newsletter-card,
    .cta-banner,
    .newsletter-form,
    .featured-article,
    .blog-search,
    .hero-stage,
    .resource-feature {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .form-grid,
    .service-grid,
    .proof-grid,
    .card-grid,
    .card-grid--portfolio,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cart-row {
        grid-template-columns: 1fr;
    }

    .hero-stage__main {
        padding: 1rem 0 0;
    }

    .hero-stage h1,
    .work-scene__head h2 {
        max-width: none;
    }

    .hero-stage__footer,
    .work-note {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-stage__index {
        position: static;
        margin-bottom: 0.4rem;
    }

    .hero-stage__aside {
        padding-top: 0;
    }

    .hero-stage__footer {
        gap: 0.8rem;
    }

    .hero-stage__ribbon span,
    .resource-link,
    .product-list__item,
    .work-ticker a {
        border-radius: 1rem;
    }

    .work-note__media img,
    .work-feature__media img,
    .journal-feature__media img,
    .product-spotlight__media img {
        min-height: 16rem;
    }

    .work-stack {
        margin-top: 0;
    }

.work-feature__overlay {
        position: static;
        width: auto;
        border-radius: 0;
        border: 0;
        background: rgba(9, 35, 48, 0.94);
    }
}

@media (max-width: 1100px) {
    .hero-editorial,
    .manifesto-quiet,
    .services-story,
    .work-gallery__layout,
    .work-gallery__intro,
    .journal-editorial,
    .resources-split,
    .resources-split__feature,
    .proof-minimal__stats {
        grid-template-columns: 1fr;
    }

    .services-story__intro {
        position: static;
    }

    .hero-editorial__ghost,
    .work-gallery__ghost {
        display: none;
    }

    .services-story__list .service-story:nth-child(n) {
        max-width: 100%;
    }

    .hero-editorial__card--light,
    .hero-editorial__card--dark,
    .resources-split__products {
        margin-left: 0;
        margin-right: 0;
    }

    .work-gallery__action {
        justify-content: flex-start;
    }

    .work-gallery__ticker {
        grid-template-columns: 1fr;
    }

    .manifesto-quiet__aside {
        padding-top: 0;
    }

    .work-gallery__side {
        margin-top: 0;
    }
}

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

    .hero-editorial__main {
        padding-top: 1rem;
    }

    .hero-editorial h1,
    .work-gallery__intro h2 {
        max-width: none;
    }

    .hero-editorial h1 span:nth-child(n) {
        margin-left: 0;
    }

    .hero-editorial__aside {
        padding-top: 0;
    }

    .hero-editorial__footer,
    .work-gallery__note {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-editorial__serial {
        position: static;
        margin-bottom: 0.5rem;
    }

    .hero-editorial__footer {
        gap: 0.8rem;
    }

    .work-gallery__featured img,
    .work-gallery__note img,
    .journal-editorial__feature img,
    .resources-split__feature img,
    .resources-split__product img {
        min-height: 16rem;
    }

    .resources-split__link,
    .resources-split__product-link,
    .work-gallery__ticker a {
        border-radius: 1rem;
    }

    .work-gallery__featured-copy {
        position: static;
        width: auto;
        border-radius: 0;
        border: 0;
        background: rgba(9, 35, 48, 0.94);
    }
}

/* Architectural Editorial / 2026 */

:root {
    --bg: #f9f9f8;
    --bg-strong: #f2f2ef;
    --surface: rgba(249, 249, 248, 0.92);
    --surface-strong: #fdfdfc;
    --surface-deep: #1a1a1a;
    --ink: #1a1a1a;
    --ink-soft: rgba(26, 26, 26, 0.66);
    --line: rgba(26, 26, 26, 0.14);
    --line-strong: rgba(26, 26, 26, 0.24);
    --accent: #0038ff;
    --shadow: none;
    --shadow-soft: none;
    --radius-lg: 0;
    --radius-md: 0;
    --radius-sm: 0;
    --shell: min(1220px, calc(100% - 3rem));
    --shell-wide: min(1520px, calc(100% - 3rem));
    --cursor-x: -120px;
    --cursor-y: -120px;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    background: var(--bg);
    color: var(--ink);
}

body::before {
    opacity: 0.02;
    background-image:
        radial-gradient(rgba(26, 26, 26, 0.72) 0.45px, transparent 0.45px),
        radial-gradient(rgba(26, 26, 26, 0.36) 0.55px, transparent 0.55px);
    background-position: 0 0, 11px 11px;
    background-size: 22px 22px;
}

body,
button,
input,
textarea,
select {
    font-size: 1rem;
}

h1,
h2,
h3,
h4 {
    font-family: "Bodoni Moda", Georgia, serif;
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

h1 {
    font-size: clamp(4.5rem, 10vw, 8.8rem);
}

h2 {
    font-size: clamp(3rem, 7vw, 5.9rem);
}

h3 {
    font-size: clamp(1.5rem, 2.8vw, 2.6rem);
}

p,
li,
label,
input,
textarea,
select {
    color: var(--ink-soft);
}

.eyebrow,
.hero-editorial__serial,
.manifesto-quiet__serial,
.journal-editorial__serial,
.resources-split__serial,
.footer-scene__serial,
.hero-editorial__label,
.footer-scene__group-title,
.site-nav a,
.brand__text small,
.card-meta,
.card-link,
.filter-pill,
.button {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.shell,
.shell-wide {
    width: 100%;
}

.site-header,
[data-page="home"] .site-header {
    top: 0;
    border: 0;
    border-bottom: 0.5px solid var(--line);
    background: rgba(249, 249, 248, 0.94);
    backdrop-filter: blur(20px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1.5rem;
    align-items: center;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.brand {
    align-items: start;
    gap: 1rem;
}

.brand__mark {
    width: 3.25rem;
    height: 3.25rem;
    border: 0.5px solid var(--line-strong);
    background: transparent;
    color: var(--ink);
    font-size: 0.7rem;
    letter-spacing: 0.24em;
}

.brand__text strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand__text small {
    display: block;
    color: var(--ink-soft);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.site-nav a {
    padding: 0.2rem 0;
    color: rgba(26, 26, 26, 0.58);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
}

.site-nav a::after {
    left: 0;
    right: 0;
    bottom: -0.15rem;
    height: 1px;
    background: var(--accent);
}

.site-header__actions {
    justify-self: end;
    gap: 0.9rem;
}

.ghost-link,
.text-link,
.footer-links a,
.footer-scene__social a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--ink);
}

.ghost-link::after,
.text-link::after,
.footer-links a::after,
.footer-scene__social a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.16rem;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.38s cubic-bezier(0.65, 0, 0.35, 1);
}

.ghost-link:hover::after,
.text-link:hover::after,
.footer-links a:hover::after,
.footer-scene__social a:hover::after,
.ghost-link:focus-visible::after,
.text-link:focus-visible::after,
.footer-links a:focus-visible::after,
.footer-scene__social a:focus-visible::after {
    transform: scaleX(1);
}

.button,
.button-primary,
.button-secondary,
.nav-toggle,
.resources-split__link,
.resources-split__product-link,
.work-gallery__ticker a,
.filter-pill {
    border-radius: 0;
    box-shadow: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 1px solid var(--accent);
    outline-offset: 4px;
    box-shadow: none;
}

.button {
    min-height: 3rem;
    padding: 0.9rem 1.15rem;
    border: 0.5px solid var(--ink);
    background: transparent;
    color: var(--ink);
    transition:
        transform 0.4s cubic-bezier(0.65, 0, 0.35, 1),
        background-color 0.4s cubic-bezier(0.65, 0, 0.35, 1),
        border-color 0.4s cubic-bezier(0.65, 0, 0.35, 1),
        color 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.button:hover {
    transform: translateY(-4px);
}

.button:active {
    transform: translateY(-1px);
}

.button-primary,
.button-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #f9f9f8;
}

.button-secondary:hover,
.ghost-link:hover,
.text-link:hover {
    color: var(--ink);
}

.page-hero,
.project-hero,
.article-hero,
.section,
.home-hero,
.home-manifesto,
.home-services,
.home-work,
.home-journal,
.home-resources,
.home-proof,
.home-newsletter,
.home-closing {
    padding-top: clamp(4.5rem, 8vw, 8.2rem);
    padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

.page-hero .shell,
.project-hero .shell,
.article-hero .shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.6fr);
    gap: 1.25rem 6vw;
    align-items: end;
}

.page-hero .shell > .eyebrow,
.project-hero .shell > .eyebrow,
.article-hero .shell > .eyebrow {
    grid-column: 1 / -1;
}

.page-hero .shell > h1,
.project-hero .shell > h1,
.article-hero .shell > h1 {
    max-width: 9ch;
}

.page-hero .shell > p:not(.eyebrow),
.project-hero .shell > p:not(.eyebrow),
.article-hero .shell > p:not(.eyebrow),
.page-hero .shell > .lede,
.project-hero .shell > .lede,
.article-hero .shell > .lede {
    max-width: 22rem;
    margin-left: auto;
}

.page-hero .filter-row,
.page-hero .blog-search,
.project-hero .filter-row,
.article-hero .filter-row {
    grid-column: 1 / -1;
    padding-top: 1rem;
    margin-top: 0.8rem;
    border-top: 0.5px solid var(--line);
}

.section-contrast,
.site-footer,
.resources-split__products,
.hero-editorial__card--dark,
.work-gallery__featured-copy {
    background: var(--surface-deep);
    color: #f9f9f8;
}

.section-contrast p,
.site-footer p,
.resources-split__products p,
.hero-editorial__card--dark p,
.work-gallery__featured-copy p,
.section-contrast .eyebrow,
.site-footer .eyebrow,
.resources-split__products .eyebrow,
.hero-editorial__card--dark .eyebrow,
.work-gallery__featured-copy .chip,
.work-gallery__featured-copy .card-meta,
.resources-split__products .chip,
.resources-split__products small,
.resources-split__products .resources-split__serial {
    color: rgba(249, 249, 248, 0.72);
}

.hero-editorial,
.manifesto-quiet,
.services-story,
.work-gallery,
.journal-editorial,
.resources-split,
.proof-minimal,
.closing-open,
.newsletter-card,
.cta-banner,
.featured-article,
.two-column,
.contact-layout,
.about-hero,
.checkout-layout {
    border-top: 0.5px solid var(--line);
    padding-top: 1.35rem;
}

.hero-editorial {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.78fr);
    gap: 1.5rem 5vw;
    min-height: calc(100vh - 8rem);
    overflow: clip;
}

.hero-editorial__bg--grid {
    background-image:
        linear-gradient(rgba(26, 26, 26, 0.08) 0.5px, transparent 0.5px),
        linear-gradient(90deg, rgba(26, 26, 26, 0.08) 0.5px, transparent 0.5px);
    background-size: 42px 42px;
    opacity: 0.5;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 100%);
}

.hero-editorial__bg--glow {
    inset: 18% auto auto 58%;
    width: min(28rem, 42vw);
    height: min(28rem, 42vw);
    background: rgba(0, 56, 255, 0.06);
    filter: none;
    border: 0.5px solid rgba(0, 56, 255, 0.12);
    transform: rotate(8deg);
}

.hero-editorial__poster {
    position: absolute;
    top: 3.2rem;
    left: 0;
    z-index: 0;
    display: grid;
    gap: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: clamp(4.5rem, 13vw, 10rem);
    font-weight: 600;
    line-height: 0.82;
    letter-spacing: -0.08em;
    color: rgba(26, 26, 26, 0.06);
    pointer-events: none;
}

.hero-editorial__poster span:nth-child(2) {
    margin-left: 8vw;
}

.hero-editorial__poster span:nth-child(3) {
    margin-left: 18vw;
}

.hero-editorial__main,
.hero-editorial__aside,
.hero-editorial__footer {
    position: relative;
    z-index: 1;
}

.hero-editorial__main {
    padding-top: clamp(5rem, 10vw, 8rem);
}

.hero-editorial h1 {
    max-width: 10.5ch;
}

.hero-editorial h1 span:nth-child(2) {
    margin-left: 1.8rem;
}

.hero-editorial h1 span:nth-child(4) {
    margin-left: 3.4rem;
}

.hero-editorial__aside {
    display: grid;
    gap: 1rem;
    align-content: start;
    padding-top: clamp(8rem, 13vw, 10rem);
}

.hero-editorial__visual,
.hero-editorial__card,
.resources-split__downloads,
.resources-split__products,
.journal-editorial__feature,
.journal-editorial__note,
.proof-minimal__item,
.side-card,
.card,
.service-card,
.proof-card,
.featured-article,
.newsletter-card,
.cta-banner,
.installer-status-card,
.installer-panel,
.installer-check,
.footer-scene,
.filter-pill,
.blog-search input,
.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter-form input,
.stack-form input,
.stack-form textarea {
    border-radius: 0;
    box-shadow: none;
}

.hero-editorial__visual {
    position: relative;
    margin-left: clamp(1rem, 6vw, 6rem);
    border: 0.5px solid var(--line);
    overflow: hidden;
}

.hero-editorial__visual img,
.work-gallery__featured img,
.work-gallery__note img,
.journal-editorial__feature img,
.resources-split__feature img,
.resources-split__product img,
.card-media img,
.portrait-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.42s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.42s ease;
}

.hero-editorial__visual:hover img,
.work-gallery__featured:hover img,
.work-gallery__note:hover img,
.journal-editorial__feature:hover img,
.resources-split__feature:hover img,
.resources-split__product:hover img,
.card:hover .card-media img {
    transform: scale(1.06);
}

.hero-editorial__card--dark {
    margin-right: clamp(1rem, 6vw, 5rem);
    padding: 1.2rem;
    border: 0.5px solid rgba(255, 255, 255, 0.12);
}

.hero-editorial__card--light {
    margin-left: clamp(2rem, 8vw, 7rem);
    padding: 1.2rem;
    border: 0.5px solid var(--line);
    background: transparent;
}

.hero-editorial__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    padding-top: 1rem;
    border-top: 0.5px solid var(--line);
}

.manifesto-quiet {
    grid-template-columns: 0.28fr minmax(0, 1fr) minmax(16rem, 0.5fr);
    align-items: start;
}

.services-story {
    grid-template-columns: minmax(15rem, 0.48fr) minmax(0, 1fr);
    gap: 2rem 5vw;
}

.services-story__intro {
    position: sticky;
    top: 7.5rem;
}

.services-story__list {
    display: grid;
    gap: 0;
}

.service-story {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 0.5px solid var(--line);
    background: transparent;
}

.services-story__list .service-story:nth-child(odd) {
    margin-left: 16%;
}

.services-story__list .service-story:nth-child(even) {
    margin-right: 18%;
}

.work-gallery__layout,
.resources-split,
.journal-editorial,
.proof-minimal__stats,
.footer-scene,
.featured-article,
.two-column,
.contact-layout,
.about-hero,
.checkout-layout {
    display: grid;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    gap: 1.25rem;
}

.work-gallery__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.5fr);
    gap: 1rem 4vw;
}

.work-gallery__featured {
    grid-column: 1 / span 9;
}

.work-gallery__side {
    grid-column: 11 / span 4;
    display: grid;
    gap: 1rem;
    margin-top: 5rem;
}

.work-gallery__featured-copy {
    border: 0.5px solid rgba(255, 255, 255, 0.12);
}

.work-gallery__ticker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.journal-editorial__intro {
    grid-column: 1 / span 5;
}

.journal-editorial__feature {
    grid-column: 7 / span 8;
}

.journal-editorial__notes {
    grid-column: 4 / span 10;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.resources-split__downloads {
    border: 0.5px solid var(--line);
}

.resources-split__downloads,
.resources-split__products {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.resources-split__feature,
.resources-split__product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.66fr);
    gap: 1rem;
    align-items: end;
}

.resources-split__feature {
    border-top: 0.5px solid var(--line);
    padding-top: 1rem;
}

.resources-split__product {
    border-top: 0.5px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
}

.proof-minimal__intro {
    grid-column: 1 / span 5;
}

.proof-minimal__stats {
    grid-column: 6 / span 9;
    align-items: start;
}

.proof-minimal__item:nth-child(2) {
    margin-top: 3rem;
}

.newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.56fr);
    gap: 1.5rem 3vw;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 0.5px solid var(--line);
    background: transparent;
}

.newsletter-form,
.blog-search {
    display: grid;
    gap: 0.65rem;
    align-content: end;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.filter-pill {
    padding: 0.7rem 0.9rem;
    border: 0.5px solid var(--line);
    background: transparent;
    color: var(--ink-soft);
}

.filter-pill.is-active,
.filter-pill:hover {
    color: var(--ink);
    border-color: var(--accent);
}

.card-grid,
.card-grid--portfolio {
    display: grid;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    gap: 1.1rem 1rem;
    align-items: start;
}

.card-grid > *,
.card-grid--portfolio > * {
    grid-column: span 5;
}

.card-grid > *:nth-child(5n + 1) {
    grid-column: 1 / span 8;
}

.card-grid > *:nth-child(5n + 2) {
    grid-column: 10 / span 5;
    margin-top: 4rem;
}

.card-grid > *:nth-child(5n + 3) {
    grid-column: 3 / span 4;
    margin-top: 1rem;
}

.card-grid > *:nth-child(5n + 4) {
    grid-column: 8 / span 7;
}

.card-grid > *:nth-child(5n + 5) {
    grid-column: 1 / span 5;
    margin-top: 3rem;
}

.card-grid--portfolio > *:nth-child(4n + 1) {
    grid-column: 1 / span 8;
}

.card-grid--portfolio > *:nth-child(4n + 2) {
    grid-column: 10 / span 5;
    margin-top: 4.5rem;
}

.card-grid--portfolio > *:nth-child(4n + 3) {
    grid-column: 2 / span 5;
    margin-top: 1.4rem;
}

.card-grid--portfolio > *:nth-child(4n + 4) {
    grid-column: 8 / span 7;
}

.card {
    display: grid;
    gap: 0.8rem;
    align-content: start;
    background: transparent;
    border: 0;
}

.card-media {
    position: relative;
    overflow: hidden;
    border: 0.5px solid var(--line);
}

.card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.08);
    opacity: 0;
    transition: opacity 0.36s ease;
}

.card:hover .card-media::after {
    opacity: 1;
}

.card-body {
    display: grid;
    gap: 0.75rem;
    padding-top: 0.9rem;
    border-top: 0.5px solid var(--line);
}

.card-body h3 {
    max-width: 11ch;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 0.5px solid var(--line);
    color: var(--ink-soft);
}

.card-link {
    justify-self: start;
}

.featured-article,
.cta-banner,
.side-card,
.proof-card,
.contact-form,
.summary-card,
.checkout-summary,
.cart-table,
.download-link,
.download-hero__purchase {
    border: 0.5px solid var(--line);
    background: transparent;
}

.featured-article__media,
.portrait-card {
    overflow: hidden;
    border: 0.5px solid var(--line);
}

.two-column > :first-child,
.about-hero > :first-child,
.contact-layout > :first-child,
.checkout-layout > :first-child {
    grid-column: 1 / span 8;
}

.two-column > :last-child,
.about-hero > :last-child,
.contact-layout > :last-child,
.checkout-layout > :last-child {
    grid-column: 10 / span 5;
}

.contact-cards,
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form,
.side-card,
.proof-card,
.featured-article,
.cta-banner {
    padding: clamp(1.15rem, 3vw, 1.75rem);
}

.blog-search input,
.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter-form input,
.stack-form input,
.stack-form textarea {
    width: 100%;
    min-height: 3.2rem;
    padding: 0.9rem 1rem;
    border: 0.5px solid var(--line);
    background: rgba(249, 249, 248, 0.9);
    color: var(--ink);
}

.contact-form textarea,
.stack-form textarea {
    min-height: 10rem;
    resize: vertical;
}

.blog-search input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.newsletter-form input:focus,
.stack-form input:focus,
.stack-form textarea:focus {
    box-shadow: inset 0 -2px 0 var(--accent);
    border-color: rgba(0, 56, 255, 0.4);
}

.site-footer {
    border-top: 0.5px solid rgba(255, 255, 255, 0.14);
    background-image: none;
}

.footer-scene {
    grid-template-columns: repeat(14, minmax(0, 1fr));
    padding: clamp(2rem, 5vw, 4rem);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 0.5px, transparent 0.5px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0.5px, transparent 0.5px);
    background-size: 40px 40px;
}

.footer-scene__lead {
    grid-column: 1 / span 7;
}

.footer-scene__links {
    grid-column: 9 / span 6;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    align-content: start;
}

.footer-scene__social {
    grid-column: 1 / span 7;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
}

.footer-scene__meta {
    grid-column: 9 / span 6;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 0.5px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
}

.footer-scene h2 {
    max-width: 10ch;
}

.reveal {
    opacity: 1;
    clip-path: inset(100% 0 0 0);
    transform: translate3d(var(--reveal-x, 0px), 18px, 0);
    transition:
        clip-path 0.52s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.52s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.is-visible {
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
}

.cursor-orb {
    z-index: 60;
    width: 28px;
    height: 28px;
    margin-left: -14px;
    margin-top: -14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 56, 255, 0.32);
    background: rgba(0, 56, 255, 0.04);
    opacity: 0;
    mix-blend-mode: multiply;
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) scale(0.8);
    transition:
        transform 0.24s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.cursor-orb.is-visible {
    opacity: 1;
}

.cursor-orb.is-active {
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) scale(1.55);
    background: rgba(0, 56, 255, 0.08);
    border-color: rgba(0, 56, 255, 0.62);
}

.cursor-orb.is-pressed {
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) scale(0.92);
}

@media (max-width: 1100px) {
    .site-header__inner,
    .page-hero .shell,
    .project-hero .shell,
    .article-hero .shell,
    .hero-editorial,
    .manifesto-quiet,
    .services-story,
    .work-gallery__intro,
    .work-gallery__layout,
    .journal-editorial,
    .resources-split,
    .proof-minimal__stats,
    .newsletter-card,
    .footer-scene,
    .two-column,
    .contact-layout,
    .about-hero,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .site-nav,
    .site-header__actions {
        justify-self: start;
    }

    .services-story__intro {
        position: static;
    }

    .services-story__list .service-story:nth-child(n),
    .hero-editorial__visual,
    .hero-editorial__card--dark,
    .hero-editorial__card--light {
        margin-left: 0;
        margin-right: 0;
    }

    .work-gallery__featured,
    .work-gallery__side,
    .journal-editorial__intro,
    .journal-editorial__feature,
    .journal-editorial__notes,
    .proof-minimal__intro,
    .proof-minimal__stats,
    .footer-scene__lead,
    .footer-scene__links,
    .footer-scene__social,
    .footer-scene__meta,
    .two-column > :first-child,
    .two-column > :last-child,
    .about-hero > :first-child,
    .about-hero > :last-child,
    .contact-layout > :first-child,
    .contact-layout > :last-child,
    .checkout-layout > :first-child,
    .checkout-layout > :last-child {
        grid-column: auto;
    }

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

    .card-grid > *:nth-child(n),
    .card-grid--portfolio > *:nth-child(n) {
        grid-column: auto;
        margin-top: 0;
    }

    .contact-cards,
    .proof-grid,
    .journal-editorial__notes,
    .footer-scene__links,
    .work-gallery__ticker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(100%, calc(100% - 1.25rem));
        --shell-wide: min(100%, calc(100% - 1.25rem));
    }

    h1 {
        font-size: clamp(3.4rem, 16vw, 5.2rem);
    }

    h2 {
        font-size: clamp(2.4rem, 11vw, 3.5rem);
    }

    .hero-editorial {
        min-height: auto;
    }

    .hero-editorial__main,
    .hero-editorial__aside {
        padding-top: 0;
    }

    .hero-editorial__poster,
    .hero-editorial__ghost,
    .work-gallery__ghost {
        display: none;
    }

    .hero-editorial h1 span:nth-child(n) {
        margin-left: 0;
    }

    .hero-editorial__footer,
    .resources-split__feature,
    .resources-split__product,
    .featured-article,
    .newsletter-card,
    .work-gallery__note {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .card-grid--portfolio,
    .contact-cards,
    .proof-grid,
    .journal-editorial__notes,
    .footer-scene__links,
    .work-gallery__ticker {
        grid-template-columns: 1fr;
    }

    .footer-scene {
        padding: 1.5rem;
    }

    .footer-scene__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
