/* Public detail experiences
   Isolated from the global design system by page-level prefixes. */

:where(.pd-page, .sd-page, .article-page, .audit-result-page),
:where(.pd-page, .sd-page, .article-page, .audit-result-page) * {
    box-sizing: border-box;
}

:where(.pd-page, .sd-page, .article-page, .audit-result-page) {
    --detail-ink: #15161a;
    --detail-muted: #6c707a;
    --detail-line: rgba(21, 22, 26, .14);
    --detail-paper: #fbfaf6;
    --detail-accent: #3c5cff;
    --detail-accent-warm: #f05b3d;
    color: var(--detail-ink);
    font-family: inherit;
    overflow: clip;
}

:where(.pd-page, .sd-page, .article-page, .audit-result-page) :where(a, button, summary, input, textarea) {
    -webkit-tap-highlight-color: transparent;
}

:where(.pd-page, .sd-page, .article-page, .audit-result-page) :where(a, button, summary):focus-visible,
:where(.audit-result-page) :where(input, textarea):focus-visible {
    outline: 3px solid rgba(60, 92, 255, .32);
    outline-offset: 3px;
}

.pd-shell,
.sd-shell,
.article-shell,
.audit-result-shell {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.pd-overline,
.sd-overline {
    margin: 0 0 18px;
    color: var(--detail-accent);
    font-size: .74rem;
    font-weight: 750;
    letter-spacing: .02em;
}

/* --------------------------------------------------------------------------
   Project case study
   -------------------------------------------------------------------------- */

.pd-page {
    background: var(--detail-paper);
}

.pd-hero {
    position: relative;
    padding: clamp(48px, 7vw, 100px) 0 0;
    color: #f8f8f4;
    background:
        radial-gradient(circle at 14% 5%, rgba(60, 92, 255, .22), transparent 31%),
        linear-gradient(135deg, #0d0e13 0%, #17191f 60%, #101116 100%);
}

.pd-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .25;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.pd-hero > .pd-shell {
    position: relative;
    z-index: 1;
}

.pd-breadcrumb,
.sd-breadcrumb,
.article-breadcrumb,
.audit-result-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    margin-bottom: clamp(50px, 7vw, 96px);
    color: rgba(255,255,255,.5);
    font-size: .72rem;
    font-weight: 650;
}

.pd-breadcrumb a,
.sd-breadcrumb a,
.article-breadcrumb a,
.audit-result-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.pd-breadcrumb a:hover,
.sd-breadcrumb a:hover,
.article-breadcrumb a:hover,
.audit-result-breadcrumb a:hover {
    color: #fff;
}

.pd-breadcrumb span:last-child,
.sd-breadcrumb span:last-child,
.article-breadcrumb span:last-child,
.audit-result-breadcrumb span:last-child {
    overflow: hidden;
    max-width: 45ch;
    color: rgba(255,255,255,.82);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(260px, .65fr);
    gap: clamp(40px, 8vw, 126px);
    align-items: end;
    margin-bottom: clamp(56px, 8vw, 108px);
}

.pd-eyebrow,
.sd-eyebrow,
.audit-result-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    font-size: .72rem;
    font-weight: 750;
}

.pd-eyebrow {
    color: #9ca9ff;
}

.pd-eyebrow i,
.sd-eyebrow i,
.audit-result-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px color-mix(in srgb, currentColor 14%, transparent);
}

.pd-eyebrow i {
    width: 42px;
    height: 1px;
    border-radius: 0;
    box-shadow: none;
}

.pd-hero h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(3rem, 6.6vw, 7.4rem);
    font-weight: 750;
    line-height: .98;
    letter-spacing: -.065em;
}

.pd-hero-copy > p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(248,248,244,.68);
    font-size: clamp(.95rem, 1.25vw, 1.16rem);
    line-height: 2;
}

.pd-project-facts {
    margin: 0;
    border-top: 1px solid rgba(255,255,255,.16);
}

.pd-project-facts > div {
    padding: 19px 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.pd-project-facts dt {
    margin-bottom: 8px;
    color: rgba(255,255,255,.42);
    font-size: .66rem;
    font-weight: 700;
}

.pd-project-facts dd {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #fff;
    font-size: .82rem;
    font-weight: 750;
}

.pd-status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #44d69e;
    box-shadow: 0 0 0 5px rgba(68,214,158,.12);
}

.pd-status.pd-status-building {
    background: #ffb83e;
    box-shadow: 0 0 0 5px rgba(255,184,62,.12);
}

.pd-cover {
    margin: 0;
    transform: translateY(1px);
}

.pd-cover-frame {
    overflow: hidden;
    min-height: 360px;
    aspect-ratio: 16 / 8.25;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 26px 26px 0 0;
    background: #23252c;
}

.pd-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-cover figcaption {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 3px 20px;
    color: rgba(255,255,255,.46);
    font-size: .68rem;
}

.pd-jumpbar {
    position: sticky;
    z-index: 20;
    top: 70px;
    border-bottom: 1px solid var(--detail-line);
    background: rgba(251,250,246,.9);
    backdrop-filter: blur(16px);
}

.pd-jumpbar .pd-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 64px;
}

.pd-jumpbar .pd-shell > span {
    flex: none;
    color: var(--detail-muted);
    font-size: .68rem;
    font-weight: 750;
}

.pd-jumpbar .pd-shell > div {
    display: flex;
    align-items: stretch;
    gap: 34px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pd-jumpbar a {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 64px;
    color: #444751;
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.pd-jumpbar a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--detail-accent);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.pd-jumpbar a:hover::after { transform: scaleX(1); }

.pd-progress,
.pd-editorial-section,
.pd-stack,
.pd-gallery-head {
    display: grid;
    grid-template-columns: minmax(140px, .45fr) minmax(0, 2fr);
    gap: clamp(36px, 8vw, 130px);
}

.pd-progress {
    padding-block: clamp(72px, 10vw, 140px);
    border-bottom: 1px solid var(--detail-line);
}

.pd-section-index {
    align-self: start;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--detail-muted);
    font-size: .67rem;
    font-weight: 750;
}

.pd-section-index b {
    display: grid;
    flex: none;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--detail-line);
    border-radius: 50%;
    color: var(--detail-ink);
    font-size: .64rem;
}

.pd-section-index span { letter-spacing: .04em; }

.pd-progress-main header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.pd-progress-main header span {
    display: block;
    margin-bottom: 12px;
    color: var(--detail-accent);
    font-size: .7rem;
    font-weight: 750;
}

.pd-progress-main h2,
.pd-section-content > h2,
.pd-stack > div > h2,
.pd-gallery-head h2 {
    max-width: 820px;
    margin: 0;
    color: var(--detail-ink);
    font-size: clamp(1.85rem, 3.2vw, 3.5rem);
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -.035em;
}

.pd-progress-main header > strong {
    flex: none;
    color: var(--detail-ink);
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    font-weight: 680;
    line-height: 1;
}

.pd-progress-main header > strong small {
    color: var(--detail-muted);
    font-size: .25em;
}

.pd-progress-track {
    overflow: hidden;
    height: 5px;
    margin: 44px 0;
    border-radius: 99px;
    background: #e2e1dc;
}

.pd-progress-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--detail-accent), #8d73ff);
}

.pd-build-log {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 1px;
    list-style: none;
    background: var(--detail-line);
}

.pd-build-log li {
    min-height: 150px;
    padding: 22px;
    background: var(--detail-paper);
}

.pd-build-log li > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 25px;
}

.pd-build-log b { color: var(--detail-accent); font-size: .72rem; }
.pd-build-log small { color: var(--detail-muted); font-size: .65rem; }
.pd-build-log p { margin: 0; color: #4f525b; font-size: .8rem; line-height: 1.85; }

.pd-story { border-bottom: 1px solid var(--detail-line); }

.pd-editorial-section {
    padding-block: clamp(86px, 12vw, 176px);
    border-top: 1px solid var(--detail-line);
    scroll-margin-top: 150px;
}

.pd-editorial-section:first-child { border-top: 0; }

.pd-rich,
.pd-lead {
    max-width: 800px;
    margin-top: 40px;
    color: #50535c;
    font-size: clamp(.9rem, 1.15vw, 1.05rem);
    line-height: 2.2;
}

.pd-rich :where(h2, h3, h4) {
    margin: 2.5em 0 .8em;
    color: var(--detail-ink);
    line-height: 1.45;
}

.pd-rich :where(p, ul, ol, blockquote) { margin-block: 1.2em; }
.pd-rich :where(img, video) { max-width: 100%; height: auto; border-radius: 14px; }
.pd-rich a { color: var(--detail-accent); text-underline-offset: 4px; }

.pd-thinking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 58px;
}

.pd-thinking-grid article {
    min-height: 360px;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--detail-line);
    border-radius: 22px;
    background: #fff;
}

.pd-thinking-grid article > span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--detail-muted);
    font-size: .68rem;
    font-weight: 750;
}

.pd-thinking-grid article > span b { color: var(--detail-accent); }
.pd-thinking-grid h3 { max-width: 360px; margin: 44px 0 0; font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 750; line-height: 1.5; }
.pd-thinking-grid .pd-rich { margin-top: 22px; font-size: .86rem; }

.pd-thinking-grid .pd-solution-card {
    border-color: #1b1d23;
    color: #fff;
    background: #1b1d23;
}

.pd-solution-card h3,
.pd-solution-card .pd-rich,
.pd-solution-card .pd-rich :where(h2,h3,h4) { color: #fff; }
.pd-solution-card .pd-rich { color: rgba(255,255,255,.67); }

.pd-impact .pd-section-content {
    position: relative;
    padding: clamp(30px, 5vw, 70px);
    border-radius: 24px;
    background: #eceeff;
}

.pd-impact .pd-section-content::before {
    position: absolute;
    top: 28px;
    left: 30px;
    width: clamp(38px, 5vw, 68px);
    aspect-ratio: 1;
    content: "";
    background: rgba(60,92,255,.15);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.5 4.2L18 9l-4.5 1.8L12 15l-1.5-4.2L6 9l4.5-1.8L12 3Z'/%3E%3Cpath d='M19 15l.8 2.2L22 18l-2.2.8L19 21l-.8-2.2L16 18l2.2-.8L19 15Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.5 4.2L18 9l-4.5 1.8L12 15l-1.5-4.2L6 9l4.5-1.8L12 3Z'/%3E%3Cpath d='M19 15l.8 2.2L22 18l-2.2.8L19 21l-.8-2.2L16 18l2.2-.8L19 15Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pd-quote-wrap { color: #fff; background: var(--detail-accent); }

.pd-quote {
    position: relative;
    padding-block: clamp(80px, 11vw, 155px);
}

.pd-quote > span {
    position: absolute;
    top: 50px;
    left: 0;
    color: rgba(255,255,255,.18);
    font-family: Georgia, serif;
    font-size: clamp(8rem, 18vw, 18rem);
    line-height: 1;
}

.pd-quote > p {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0;
    font-size: clamp(1.25rem, 2.1vw, 2rem);
    font-weight: 620;
    line-height: 1.6;
    letter-spacing: -.035em;
}

.pd-quote footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 46px;
}

.pd-quote footer i { width: 44px; height: 1px; background: rgba(255,255,255,.5); }
.pd-quote footer div { display: grid; gap: 5px; }
.pd-quote footer strong { font-size: .78rem; }
.pd-quote footer small { color: rgba(255,255,255,.58); font-size: .65rem; }

.pd-stack { padding-block: clamp(90px, 11vw, 160px); }

.pd-stack ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
    margin: 50px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--detail-line);
}

.pd-stack li {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 78px;
    border-bottom: 1px solid var(--detail-line);
}

.pd-stack li small { color: var(--detail-accent); font-size: .64rem; font-weight: 750; }
.pd-stack li span { font-size: .9rem; font-weight: 750; }

.pd-gallery {
    padding-block: clamp(90px, 12vw, 170px);
    color: #fff;
    background: #111217;
    scroll-margin-top: 128px;
}

.pd-gallery .pd-section-index { color: rgba(255,255,255,.48); }
.pd-gallery .pd-section-index b { border-color: rgba(255,255,255,.18); color: #fff; }
.pd-gallery .pd-overline { color: #9eabff; }
.pd-gallery-head h2 { color: #fff; }

.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 70px;
}

.pd-gallery-grid figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: #1c1e25;
}

.pd-gallery-grid .pd-gallery-featured { grid-column: 1 / -1; }
.pd-gallery-grid img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.pd-gallery-grid .pd-gallery-featured img { aspect-ratio: 16 / 8; }
.pd-gallery-grid figure:hover img { transform: scale(1.018); }

.pd-gallery-grid figcaption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    color: rgba(255,255,255,.55);
    font-size: .65rem;
}

.pd-closing { color: #fff; background: #08090c; }

.pd-closing .pd-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr);
    gap: 70px;
    align-items: end;
    padding-block: clamp(90px, 12vw, 170px);
}

.pd-closing .pd-shell > div:first-child > span { color: #9eabff; font-size: .72rem; font-weight: 750; }
.pd-closing h2 { max-width: 800px; margin: 20px 0; font-size: clamp(2.2rem, 5vw, 5.7rem); font-weight: 750; line-height: 1.17; letter-spacing: -.05em; }
.pd-closing p { margin: 0; color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.9; }
.pd-closing-actions { display: grid; border-top: 1px solid rgba(255,255,255,.18); }

.pd-closing-actions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: .76rem;
    font-weight: 750;
    text-decoration: none;
}

.pd-closing-actions a b { font-size: 1rem; transition: transform .2s ease; }
.pd-closing-actions a:hover b { transform: translateX(-5px); }
.pd-closing-actions .pd-primary-action { padding-inline: 20px; border: 0; background: var(--detail-accent); }

/* --------------------------------------------------------------------------
   Service detail
   -------------------------------------------------------------------------- */

.sd-page { background: #f7f6f1; }

.sd-hero {
    position: relative;
    padding: clamp(46px, 6vw, 86px) 0 0;
    border-bottom: 1px solid var(--detail-line);
    background:
        linear-gradient(rgba(18,20,25,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,20,25,.04) 1px, transparent 1px),
        #f7f6f1;
    background-size: 56px 56px;
}

.sd-breadcrumb,
.article-breadcrumb,
.audit-result-breadcrumb { color: #82858d; }
.sd-breadcrumb a:hover,
.article-breadcrumb a:hover,
.audit-result-breadcrumb a:hover { color: var(--detail-ink); }
.sd-breadcrumb span:last-child,
.article-breadcrumb span:last-child,
.audit-result-breadcrumb span:last-child { color: var(--detail-ink); }

.sd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, .65fr);
    gap: clamp(50px, 10vw, 150px);
    align-items: end;
    padding-bottom: clamp(68px, 10vw, 130px);
}

.sd-eyebrow { color: var(--detail-accent-warm); }

.sd-hero-copy h1 {
    max-width: 830px;
    margin: 0;
    font-size: clamp(3rem, 6.4vw, 7rem);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -.065em;
}

.sd-hero-copy > p {
    max-width: 720px;
    margin: 30px 0 0;
    color: #565962;
    font-size: clamp(.95rem, 1.3vw, 1.14rem);
    line-height: 2;
}

.sd-hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-width: 280px;
    min-height: 62px;
    margin-top: 42px;
    padding: 0 24px;
    border-radius: 3px;
    color: #fff;
    background: var(--detail-accent);
    font-size: .78rem;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(60,92,255,.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sd-hero-action:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 24px 55px rgba(60,92,255,.28); }
.sd-hero-action b { font-size: 1.15rem; }

.sd-brief-card {
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    background: #17191f;
    box-shadow: 0 28px 65px rgba(20,22,26,.16);
}

.sd-brief-top { padding: 25px 28px 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.sd-brief-top span { display: block; margin-bottom: 8px; font-size: .77rem; font-weight: 750; }
.sd-brief-top small { color: rgba(255,255,255,.48); font-size: .65rem; }
.sd-brief-card dl { margin: 0; padding: 5px 28px; }
.sd-brief-card dl > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.sd-brief-card dt { color: rgba(255,255,255,.48); font-size: .65rem; font-weight: 650; }
.sd-brief-card dd { margin: 0; font-size: .78rem; font-weight: 750; text-align: left; }
.sd-brief-card dd small { color: rgba(255,255,255,.5); font-size: .65rem; }
.sd-brief-card > p { display: flex; gap: 10px; margin: 0; padding: 20px 28px 23px; color: rgba(255,255,255,.64); font-size: .67rem; line-height: 1.8; }
.sd-brief-card > p i { color: #66d6aa; font-style: normal; }

.sd-hero-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--detail-line);
}

.sd-hero-notes > span { display: flex; align-items: center; gap: 16px; min-height: 70px; padding-inline: 24px; border-left: 1px solid var(--detail-line); color: #555861; font-size: .7rem; font-weight: 700; }
.sd-hero-notes > span:last-child { border-left: 0; }
.sd-hero-notes b { color: var(--detail-accent); font-size: .65rem; }

.sd-intro,
.sd-delivery {
    display: grid;
    grid-template-columns: minmax(150px, .45fr) minmax(0, 2fr);
    gap: clamp(40px, 9vw, 145px);
    padding-block: clamp(90px, 12vw, 175px);
}

.sd-section-label {
    display: flex;
    align-items: center;
    gap: 13px;
    align-self: start;
    color: var(--detail-muted);
    font-size: .67rem;
    font-weight: 750;
}

.sd-section-label b {
    display: grid;
    flex: none;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--detail-accent-warm);
    font-size: .62rem;
}

.sd-intro h2,
.sd-process h2,
.sd-delivery h2,
.sd-faq h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(1.9rem, 3.5vw, 3.8rem);
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: -.04em;
}

.sd-rich {
    max-width: 790px;
    margin-top: 42px;
    color: #545760;
    font-size: clamp(.9rem, 1.15vw, 1.03rem);
    line-height: 2.25;
}

.sd-rich :where(h2,h3,h4) { margin: 2.2em 0 .7em; color: var(--detail-ink); line-height: 1.45; }
.sd-rich :where(img,video) { max-width: 100%; height: auto; border-radius: 16px; }
.sd-rich a { color: var(--detail-accent); text-underline-offset: 4px; }

.sd-process {
    padding-block: clamp(90px, 12vw, 170px);
    color: #fff;
    background: #16181d;
}

.sd-process-head {
    display: grid;
    grid-template-columns: minmax(150px, .45fr) minmax(0, 2fr);
    gap: clamp(40px, 9vw, 145px);
    margin-bottom: clamp(55px, 8vw, 105px);
}

.sd-process .sd-section-label { color: rgba(255,255,255,.45); }
.sd-process .sd-overline { color: #a9b3ff; }
.sd-process h2 { color: #fff; }

.sd-process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.sd-process-list li { display: grid; grid-template-columns: 110px 1fr auto; gap: 30px; align-items: center; min-height: 124px; border-bottom: 1px solid rgba(255,255,255,.15); }
.sd-process-list li > span { color: #8fa0ff; font-size: clamp(1.5rem, 2.8vw, 2.7rem); font-weight: 350; }
.sd-process-list li div { display: grid; gap: 8px; }
.sd-process-list small { color: rgba(255,255,255,.38); font-size: .62rem; }
.sd-process-list h3 { margin: 0; color: #fff; font-size: clamp(1rem, 1.5vw, 1.35rem); font-weight: 730; }
.sd-process-list li > i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: rgba(255,255,255,.52); font-style: normal; transition: color .2s ease, background .2s ease, transform .2s ease; }
.sd-process-list li:hover > i { color: #fff; background: var(--detail-accent); transform: rotate(45deg); }

.sd-delivery { border-bottom: 1px solid var(--detail-line); }

.sd-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    margin-top: 55px;
}

.sd-value-grid article { min-height: 260px; padding: 28px; border: 1px solid var(--detail-line); border-radius: 15px; background: #fff; }
.sd-value-grid article > span { color: var(--detail-accent-warm); font-size: .66rem; font-weight: 750; }
.sd-value-grid h3 { margin: 50px 0 15px; font-size: 1.04rem; font-weight: 750; line-height: 1.55; }
.sd-value-grid p { margin: 0; color: var(--detail-muted); font-size: .74rem; line-height: 2; }

.sd-faq { padding-block: clamp(90px, 12vw, 170px); }
.sd-faq-grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(55px, 10vw, 150px); }
.sd-faq header .sd-section-label { margin-bottom: 50px; }
.sd-faq header > p:last-child { max-width: 430px; margin: 25px 0 0; color: var(--detail-muted); font-size: .78rem; line-height: 2; }
.sd-accordion { border-top: 1px solid var(--detail-line); }
.sd-accordion details { border-bottom: 1px solid var(--detail-line); }
.sd-accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 88px; cursor: pointer; list-style: none; color: var(--detail-ink); }
.sd-accordion summary::-webkit-details-marker { display: none; }
.sd-accordion summary > span { display: flex; align-items: center; gap: 20px; font-size: .84rem; font-weight: 750; line-height: 1.7; }
.sd-accordion summary small { color: var(--detail-accent); font-size: .62rem; }
.sd-accordion summary b { color: var(--detail-muted); font-size: 1.1rem; font-weight: 400; transition: transform .2s ease; }
.sd-accordion details[open] summary b { transform: rotate(45deg); }
.sd-accordion details > div { padding: 0 50px 28px 40px; }
.sd-accordion details p { max-width: 650px; margin: 0; color: var(--detail-muted); font-size: .78rem; line-height: 2.05; }

.sd-closing { padding-block: clamp(85px, 11vw, 150px); color: #fff; background: var(--detail-accent); }
.sd-closing .sd-shell > span { color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 750; }
.sd-closing h2 { max-width: 950px; margin: 22px 0 55px; color: #fff; font-size: clamp(2.4rem, 5.8vw, 6.2rem); font-weight: 750; line-height: 1.22; letter-spacing: -.055em; }
.sd-closing .sd-shell > div { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.25); }
.sd-closing p { max-width: 560px; margin: 0; color: rgba(255,255,255,.67); font-size: .78rem; line-height: 2; }
.sd-closing a { display: flex; align-items: center; justify-content: space-between; gap: 50px; min-width: 270px; min-height: 62px; padding: 0 23px; color: #fff; background: #14161c; font-size: .78rem; font-weight: 750; text-decoration: none; transition: transform .2s ease; }
.sd-closing a:hover { color: #fff; transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   Blog article
   -------------------------------------------------------------------------- */

.article-page { background: #fcfbf7; }

.article-hero {
    padding: clamp(48px, 6vw, 84px) 0 clamp(75px, 10vw, 135px);
    border-bottom: 1px solid var(--detail-line);
    background:
        radial-gradient(circle at 82% 12%, rgba(60,92,255,.09), transparent 28%),
        #f6f4ee;
}

.article-hero-inner { max-width: 1060px; }
.article-breadcrumb { margin-bottom: clamp(52px, 8vw, 105px); }

.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-bottom: 27px;
    color: var(--detail-muted);
    font-size: .68rem;
    font-weight: 700;
}

.article-hero-meta > * { padding-inline: 13px; border-left: 1px solid var(--detail-line); }
.article-hero-meta > *:first-child { padding-right: 0; color: var(--detail-accent); }
.article-hero-meta > *:last-child { border-left: 0; }

.article-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 6.6rem);
    font-weight: 750;
    line-height: 1.18;
    letter-spacing: -.06em;
}

.article-hero > .article-shell > p {
    max-width: 760px;
    margin: 34px 0 0;
    color: #5c6069;
    font-size: clamp(.93rem, 1.25vw, 1.12rem);
    line-height: 2.05;
}

.article-author-line {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 48px;
}

.article-author-mark { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #fff; background: var(--detail-ink); font-family: system-ui,sans-serif; font-size: .75rem; font-weight: 750; }
.article-author-line > div:nth-child(2) { display: grid; gap: 3px; }
.article-author-line strong { font-size: .72rem; }
.article-author-line span { color: var(--detail-muted); font-size: .625rem; }
.article-author-line i { width: 38px; height: 1px; margin-inline: 8px; background: var(--detail-line); }
.article-author-line small { color: var(--detail-muted); font-size: .62rem; }

.article-cover { max-width: 1240px; margin-top: clamp(-48px, -4vw, -24px); }
.article-cover > div { overflow: hidden; min-height: 300px; aspect-ratio: 16 / 8.7; border-radius: 20px; background: #e7e6e0; box-shadow: 0 24px 70px rgba(24,25,30,.11); }
.article-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-cover figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 14px 4px 0; color: var(--detail-muted); font-size: .62rem; }

.article-reading {
    display: grid;
    grid-template-columns: 245px minmax(0, 760px);
    justify-content: center;
    gap: clamp(55px, 9vw, 130px);
    padding-block: clamp(85px, 11vw, 155px);
}

.article-rail { min-width: 0; }
.article-rail-card { position: sticky; top: 110px; padding-top: 20px; border-top: 2px solid var(--detail-ink); }
.article-rail-card > span { color: var(--detail-muted); font-size: .65rem; font-weight: 750; }
.article-rail dl { margin: 28px 0 0; }
.article-rail dl > div { padding: 14px 0; border-bottom: 1px solid var(--detail-line); }
.article-rail dt { margin-bottom: 5px; color: #999ba1; font-size: .625rem; font-weight: 650; }
.article-rail dd { margin: 0; color: var(--detail-ink); font-size: .68rem; font-weight: 750; }
.article-rail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.article-rail-tags a { padding: 7px 9px; border: 1px solid var(--detail-line); border-radius: 99px; color: #5d6068; font-size: .6rem; font-weight: 650; text-decoration: none; transition: color .2s ease, border-color .2s ease; }
.article-rail-tags a:hover { border-color: var(--detail-accent); color: var(--detail-accent); }
.article-back-link { display: flex; justify-content: space-between; gap: 15px; margin-top: 30px; padding-top: 17px; border-top: 1px solid var(--detail-line); color: var(--detail-ink); font-size: .67rem; font-weight: 750; text-decoration: none; }

.article-content-label { display: flex; align-items: center; gap: 18px; margin-bottom: 42px; color: var(--detail-accent); font-size: .65rem; font-weight: 750; }
.article-content-label i { flex: 1; height: 1px; background: rgba(60,92,255,.2); }

.article-body {
    color: #34373e;
    font-size: clamp(.95rem, 1.18vw, 1.06rem);
    line-height: 2.3;
}

.article-body > :first-child { margin-top: 0 !important; }
.article-body :where(h2,h3,h4) { color: var(--detail-ink); font-weight: 750; line-height: 1.55; letter-spacing: -.02em; scroll-margin-top: 120px; }
.article-body h2 { margin: 2.8em 0 .85em; padding-top: .8em; border-top: 1px solid var(--detail-line); font-size: clamp(1.55rem, 2.5vw, 2.35rem); }
.article-body h3 { margin: 2.3em 0 .7em; font-size: clamp(1.2rem, 1.8vw, 1.6rem); }
.article-body p { margin: 1.25em 0; }
.article-body :where(ul,ol) { margin: 1.6em 0; padding-right: 1.35em; }
.article-body li { margin: .7em 0; padding-right: .35em; }
.article-body blockquote { position: relative; margin: 2.4em 0; padding: 26px 31px 26px 26px; border: 0; border-right: 3px solid var(--detail-accent); color: #292b31; background: #eff1ff; font-size: 1.03em; font-weight: 650; }
.article-body blockquote p { margin: 0; }
.article-body :where(img,video,iframe) { display: block; max-width: 100%; height: auto; margin: 2.4em auto; border-radius: 14px; }
.article-body pre { overflow-x: auto; direction: ltr; margin: 2em 0; padding: 22px; border-radius: 12px; color: #e9ecff; background: #17191f; font-size: .82em; line-height: 1.85; text-align: left; }
.article-body code { direction: ltr; padding: .12em .4em; border-radius: 4px; color: #d8425d; background: #f5eaed; font-family: ui-monospace,SFMono-Regular,Consolas,monospace; font-size: .88em; }
.article-body pre code { padding: 0; color: inherit; background: transparent; }
.article-body a { color: var(--detail-accent); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article-body table { display: block; overflow-x: auto; width: 100%; margin: 2em 0; border-collapse: collapse; }
.article-body th,.article-body td { padding: 13px; border: 1px solid var(--detail-line); text-align: right; white-space: nowrap; }

.article-empty { padding: 45px; border: 1px dashed #c8c8c2; border-radius: 14px; text-align: center; }
.article-empty span { color: var(--detail-accent); font-size: .68rem; font-weight: 750; }
.article-empty h2 { margin: 15px 0 10px; font-size: 1.4rem; }
.article-empty p { margin: 0; color: var(--detail-muted); font-size: .78rem; }

.article-end { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-top: 85px; padding-top: 30px; border-top: 2px solid var(--detail-ink); }
.article-end span { color: var(--detail-muted); font-size: .62rem; }
.article-end h2 { margin: 9px 0 0; font-size: 1.12rem; font-weight: 750; }
.article-end > a { display: flex; gap: 25px; color: var(--detail-ink); font-size: .68rem; font-weight: 750; text-decoration: none; }

.article-related { padding-block: clamp(85px, 11vw, 145px); color: #fff; background: #16181d; }
.article-related > .article-shell > header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.article-related header span { color: #9eabff; font-size: .67rem; font-weight: 750; }
.article-related header h2 { margin: 12px 0 0; color: #fff; font-size: clamp(1.8rem,3vw,3.2rem); font-weight: 750; }
.article-related header > a { display: flex; gap: 20px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7); font-size: .68rem; font-weight: 700; text-decoration: none; }
.article-related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.article-related-card { display: flex; flex-direction: column; min-height: 310px; padding: 27px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; color: #fff; background: rgba(255,255,255,.025); text-decoration: none; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.article-related-card:hover { color: #fff; border-color: rgba(158,171,255,.65); background: rgba(255,255,255,.05); transform: translateY(-5px); }
.article-related-card > div { display: flex; justify-content: space-between; gap: 15px; color: rgba(255,255,255,.45); font-size: .6rem; }
.article-related-card > div span { color: #a9b3ff; }
.article-related-card h3 { margin: 50px 0 17px; color: #fff; font-size: 1.08rem; font-weight: 780; line-height: 1.65; }
.article-related-card p { display: -webkit-box; overflow: hidden; margin: 0; color: rgba(255,255,255,.5); font-size: .72rem; line-height: 1.9; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.article-related-card footer { display: flex; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72); font-size: .65rem; font-weight: 700; }

/* --------------------------------------------------------------------------
   Audit result
   -------------------------------------------------------------------------- */

.audit-result-page {
    --audit-green: #13a77e;
    --audit-yellow: #d69617;
    --audit-orange: #e56b36;
    --audit-red: #d94454;
    background: #f2f4f7;
}

.audit-result-hero {
    padding: clamp(45px,6vw,80px) 0 clamp(65px,8vw,105px);
    color: #fff;
    background:
        radial-gradient(circle at 12% 15%, rgba(60,92,255,.28), transparent 28%),
        #12141a;
}

.audit-result-breadcrumb { margin-bottom: clamp(52px,7vw,90px); color: rgba(255,255,255,.48); }
.audit-result-breadcrumb a:hover { color: #fff; }
.audit-result-breadcrumb span:last-child { color: rgba(255,255,255,.78); }

.audit-result-success { display: flex; align-items: center; gap: 13px; margin: -25px 0 40px; padding: 15px 18px; border: 1px solid rgba(83,221,169,.28); border-radius: 9px; color: #b9f5dc; background: rgba(36,156,112,.13); font-size: .72rem; }
.audit-result-success i { display: grid; flex: none; width: 26px; height: 26px; place-items: center; border-radius: 50%; color: #0d4f39; background: #74e0b7; font-style: normal; font-weight: 750; }

.audit-result-heading { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(250px,.5fr); gap: 70px; align-items: end; }
.audit-result-eyebrow { color: #9cafff; }
.audit-result-heading h1 { max-width: 860px; margin: 0; color: #fff; font-size: clamp(2.4rem,5vw,5.8rem); font-weight: 750; line-height: 1.2; letter-spacing: -.055em; }
.audit-result-heading > div:first-child > a { display: inline-flex; align-items: center; gap: 12px; max-width: 100%; margin-top: 25px; color: rgba(255,255,255,.55); font-family: ui-monospace,SFMono-Regular,Consolas,monospace; font-size: .71rem; text-decoration: none; overflow-wrap: anywhere; }
.audit-result-heading > div:first-child > a:hover { color: #fff; }
.audit-result-date { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.audit-result-date > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.4); font-size: .625rem; }
.audit-result-date > strong { display: block; color: #fff; font-size: .72rem; }
.audit-result-date > a { display: flex; justify-content: space-between; gap: 20px; margin-top: 26px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); color: #aebaff; font-size: .65rem; font-weight: 700; text-decoration: none; }

.audit-result-overview {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.35fr .7fr;
    gap: 12px;
    margin-top: -32px;
}

.audit-result-score-card,
.audit-result-summary-card,
.audit-result-metrics {
    min-width: 0;
    border: 1px solid #e0e3e8;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 16px 50px rgba(24,27,34,.07);
}

.audit-result-score-card { display: flex; align-items: center; gap: 22px; padding: 28px; }
.audit-result-score-ring { position: relative; display: grid; flex: none; width: 122px; height: 122px; place-items: center; border-radius: 50%; background: conic-gradient(var(--detail-accent) calc(var(--audit-score) * 1%), #e8eaf0 0); }
.audit-result-score-ring::before { position: absolute; inset: 9px; border-radius: 50%; content: ""; background: #fff; }
.audit-result-score-ring > div { position: relative; z-index: 1; display: grid; place-items: center; }
.audit-result-score-ring strong { color: var(--detail-ink); font-family: system-ui,sans-serif; font-size: 2.15rem; font-weight: 750; line-height: 1; }
.audit-result-score-ring span { margin-top: 7px; color: var(--detail-muted); font-size: .625rem; }
.audit-result-score-card > div:last-child > span { display: block; margin-bottom: 8px; font-size: .72rem; font-weight: 750; }
.audit-result-score-card > div:last-child > p { margin: 0; color: var(--detail-muted); font-size: .64rem; line-height: 1.8; }

.audit-result-summary-card { padding: 31px; }
.audit-result-summary-card > span { color: var(--detail-accent); font-size: .65rem; font-weight: 750; }
.audit-result-summary-card h2 { margin: 15px 0 18px; font-size: clamp(1rem,1.45vw,1.28rem); font-weight: 750; line-height: 1.75; }
.audit-result-summary-card p { display: inline; margin: 0; color: var(--detail-muted); font-size: .65rem; }
.audit-result-summary-card > strong { color: var(--detail-ink); font-size: .68rem; }

.audit-result-metrics { display: grid; padding: 10px 24px; }
.audit-result-metrics > div { display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid #e6e8ec; }
.audit-result-metrics > div:last-child { border-bottom: 0; }
.audit-result-metrics span { color: var(--detail-muted); font-size: .625rem; }
.audit-result-metrics strong { font-family: system-ui,sans-serif; font-size: .82rem; }
.audit-result-metrics small { color: var(--detail-muted); font-size: .65em; }

.audit-result-error { display: flex; gap: 17px; margin-top: 25px; padding: 20px; border: 1px solid rgba(217,68,84,.24); border-radius: 12px; background: #fff1f2; }
.audit-result-error > b { display: grid; flex: none; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: #fff; background: var(--audit-red); }
.audit-result-error strong { font-size: .72rem; }
.audit-result-error p { margin: 5px 0 0; color: #83535a; font-size: .66rem; line-height: 1.8; }

.audit-result-findings { padding-block: clamp(80px,10vw,145px); }
.audit-result-findings > header { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.audit-result-findings > header span { color: var(--detail-accent); font-size: .67rem; font-weight: 750; }
.audit-result-findings > header h2 { max-width: 750px; margin: 13px 0 0; font-size: clamp(1.7rem,3.2vw,3.3rem); font-weight: 750; line-height: 1.4; letter-spacing: -.04em; }
.audit-result-findings > header > p { max-width: 420px; margin: 0; color: var(--detail-muted); font-size: .72rem; line-height: 2; }

.audit-result-counts { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; margin-bottom: 50px; }
.audit-result-counts > div { display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 12px; padding: 18px; border: 1px solid #dfe2e7; border-radius: 11px; background: #fff; }
.audit-result-counts i { grid-row: 1/3; display: grid; width: 34px; height: 34px; place-items: center; align-self: center; border-radius: 50%; font-style: normal; font-weight: 750; }
.audit-result-counts strong { font-family: system-ui,sans-serif; font-size: 1.05rem; line-height: 1; }
.audit-result-counts span { margin-top: 5px; color: var(--detail-muted); font-size: .625rem; }
.audit-result-counts .audit-result-count-good i { color: #087858; background: #d9f6eb; }
.audit-result-counts .audit-result-count-medium i { color: #95660b; background: #fff1c9; }
.audit-result-counts .audit-result-count-important i { color: #a54a20; background: #ffe4d6; }
.audit-result-counts .audit-result-count-critical i { color: #a82d3b; background: #ffe0e4; }

.audit-result-categories { display: grid; gap: 18px; }
.audit-result-category { overflow: hidden; border: 1px solid #dfe2e7; border-radius: 15px; background: #fff; }
.audit-result-category > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; padding: 0 24px; border-bottom: 1px solid #e4e6ea; background: #fafafa; }
.audit-result-category > header > div { display: flex; align-items: center; gap: 15px; }
.audit-result-category > header span { color: var(--detail-accent); font-family: system-ui,sans-serif; font-size: .62rem; font-weight: 750; }
.audit-result-category > header h3 { margin: 0; font-size: .9rem; font-weight: 750; }
.audit-result-category > header small { color: var(--detail-muted); font-size: .6rem; }

.audit-result-issue { border-bottom: 1px solid #e7e9ed; }
.audit-result-issue:last-child { border-bottom: 0; }
.audit-result-issue summary { display: grid; grid-template-columns: 34px minmax(0,1fr) 65px 26px; gap: 14px; align-items: center; min-height: 72px; padding: 0 24px; cursor: pointer; list-style: none; }
.audit-result-issue summary::-webkit-details-marker { display: none; }
.audit-result-severity-icon { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; font-family: system-ui,sans-serif; font-size: .75rem; font-weight: 750; }
.audit-result-issue-title { font-size: .75rem; font-weight: 730; line-height: 1.6; }
.audit-result-severity-label { justify-self: end; padding: 5px 8px; border-radius: 99px; font-size: .625rem; font-weight: 750; }
.audit-result-issue summary > b { justify-self: end; color: #989ba2; font-size: 1rem; font-weight: 400; transition: transform .2s ease; }
.audit-result-issue[open] summary > b { transform: rotate(45deg); }
.audit-result-issue.audit-result-severity-good .audit-result-severity-icon,.audit-result-issue.audit-result-severity-good .audit-result-severity-label { color: #087858; background: #dff7ee; }
.audit-result-issue.audit-result-severity-medium .audit-result-severity-icon,.audit-result-issue.audit-result-severity-medium .audit-result-severity-label { color: #946309; background: #fff1c9; }
.audit-result-issue.audit-result-severity-important .audit-result-severity-icon,.audit-result-issue.audit-result-severity-important .audit-result-severity-label { color: #a74b20; background: #ffe5d7; }
.audit-result-issue.audit-result-severity-critical .audit-result-severity-icon,.audit-result-issue.audit-result-severity-critical .audit-result-severity-label { color: #a82d3b; background: #ffe1e4; }

.audit-result-issue-body { display: grid; grid-template-columns: 1.15fr .85fr; gap: 25px; padding: 28px 72px 32px 24px; border-top: 1px solid #eceef1; background: #fafbfc; }
.audit-result-issue-body > div > span { display: block; margin-bottom: 10px; color: var(--detail-muted); font-size: .625rem; font-weight: 700; }
.audit-result-issue-body strong { font-size: .73rem; }
.audit-result-issue-body p { margin: 8px 0 0; color: #62666f; font-size: .68rem; line-height: 1.95; }
.audit-result-recommendation { padding: 18px; border-radius: 9px; background: #eef1ff; }
.audit-result-recommendation > span { color: var(--detail-accent) !important; }
.audit-result-observed { grid-column: 1/-1; min-width: 0; padding-top: 18px; border-top: 1px solid #e2e4e9; }
.audit-result-observed code { display: block; overflow-x: auto; max-width: 100%; padding: 12px 14px; border-radius: 7px; color: #cbd2ff; background: #1b1d24; font-size: .65rem; line-height: 1.7; text-align: left; white-space: pre-wrap; overflow-wrap: anywhere; }

.audit-result-action { padding-block: clamp(85px,11vw,155px); color: #fff; background: #14161c; }
.audit-result-action-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.65fr); gap: clamp(55px,9vw,135px); align-items: start; }
.audit-result-action-copy > span { color: #9eabff; font-size: .68rem; font-weight: 750; }
.audit-result-action-copy > h2 { max-width: 760px; margin: 18px 0 25px; color: #fff; font-size: clamp(2rem,4vw,4.5rem); font-weight: 750; line-height: 1.35; letter-spacing: -.045em; }
.audit-result-action-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.57); font-size: .78rem; line-height: 2.1; }
.audit-result-priorities { margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.audit-result-priorities > strong { color: rgba(255,255,255,.5); font-size: .65rem; }
.audit-result-priorities ol { margin: 22px 0 0; padding: 0; list-style: none; }
.audit-result-priorities li { display: grid; grid-template-columns: 34px 1fr; gap: 17px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.1); }
.audit-result-priorities li > span { color: #9eabff; font-family: system-ui,sans-serif; font-size: .62rem; font-weight: 750; }
.audit-result-priorities b { font-size: .72rem; }
.audit-result-priorities p { margin: 6px 0 0; color: rgba(255,255,255,.45); font-size: .63rem; line-height: 1.8; }

.audit-result-form { padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: #fff; color: var(--detail-ink); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.audit-result-form header { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid #e4e5e8; }
.audit-result-form header span { display: block; margin-bottom: 8px; font-size: .82rem; font-weight: 750; }
.audit-result-form header p { margin: 0; color: var(--detail-muted); font-size: .625rem; line-height: 1.8; }
.audit-result-field { display: grid; gap: 8px; margin-bottom: 18px; }
.audit-result-field label { color: #555861; font-size: .62rem; font-weight: 750; }
.audit-result-field label small { color: #a0a2a8; font-size: .85em; font-weight: 500; }
.audit-result-field input,.audit-result-field textarea { width: 100%; border: 1px solid #dcdfe4; border-radius: 8px; color: var(--detail-ink); background: #f9fafb; font: inherit; font-size: .72rem; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.audit-result-field input { height: 50px; padding: 0 14px; }
.audit-result-field textarea { min-height: 110px; padding: 13px 14px; resize: vertical; line-height: 1.8; }
.audit-result-field input:focus,.audit-result-field textarea:focus { outline: 0; border-color: var(--detail-accent); background: #fff; box-shadow: 0 0 0 4px rgba(60,92,255,.09); }
.audit-result-field input[dir="ltr"] { text-align: left; }
.audit-result-form button { display: flex; align-items: center; justify-content: space-between; gap: 25px; width: 100%; min-height: 56px; margin-top: 25px; padding: 0 19px; border: 0; border-radius: 7px; color: #fff; background: var(--detail-accent); font: inherit; font-size: .72rem; font-weight: 750; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.audit-result-form button:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(60,92,255,.25); }
.audit-result-form > small { display: block; margin-top: 13px; color: #94969d; font-size: .625rem; text-align: center; }

/* --------------------------------------------------------------------------
   Responsive behavior
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
    .pd-hero-grid { grid-template-columns: minmax(0,1.5fr) minmax(230px,.6fr); gap: 55px; }
    .pd-progress,.pd-editorial-section,.pd-stack,.pd-gallery-head { grid-template-columns: 130px minmax(0,1fr); gap: 55px; }
    .pd-closing .pd-shell { grid-template-columns: 1fr 300px; }
    .sd-hero-grid { grid-template-columns: minmax(0,1.3fr) minmax(310px,.7fr); gap: 55px; }
    .sd-intro,.sd-delivery,.sd-process-head { grid-template-columns: 130px minmax(0,1fr); gap: 55px; }
    .sd-value-grid { grid-template-columns: 1fr; }
    .sd-value-grid article { min-height: 0; }
    .sd-value-grid h3 { margin-top: 28px; }
    .article-reading { grid-template-columns: 210px minmax(0,690px); gap: 55px; }
    .audit-result-overview { grid-template-columns: 1fr 1.2fr; }
    .audit-result-metrics { grid-column: 1/-1; grid-template-columns: repeat(3,1fr); padding: 0 20px; }
    .audit-result-metrics > div { min-height: 65px; padding-inline: 14px; border-bottom: 0; border-left: 1px solid #e6e8ec; }
    .audit-result-metrics > div:last-child { border-left: 0; }
}

@media (max-width: 820px) {
    .pd-shell,.sd-shell,.article-shell,.audit-result-shell { width: min(100% - 36px, 700px); }

    .pd-hero-grid,.sd-hero-grid,.audit-result-heading { grid-template-columns: 1fr; align-items: start; }
    .pd-project-facts { display: grid; grid-template-columns: repeat(3,1fr); }
    .pd-project-facts > div { padding-inline: 16px; border-left: 1px solid rgba(255,255,255,.16); }
    .pd-project-facts > div:last-child { border-left: 0; }
    .pd-cover-frame { min-height: 240px; }
    .pd-progress,.pd-editorial-section,.pd-stack,.pd-gallery-head,.sd-intro,.sd-delivery,.sd-process-head { grid-template-columns: 1fr; gap: 38px; }
    .pd-build-log { grid-template-columns: 1fr; }
    .pd-thinking-grid { grid-template-columns: 1fr; }
    .pd-stack ul { grid-template-columns: 1fr; }
    .pd-gallery-grid { grid-template-columns: 1fr; }
    .pd-gallery-grid .pd-gallery-featured { grid-column: auto; }
    .pd-gallery-grid .pd-gallery-featured img,.pd-gallery-grid img { aspect-ratio: 4 / 3; }
    .pd-closing .pd-shell { grid-template-columns: 1fr; }

    .sd-hero-notes { grid-template-columns: 1fr; }
    .sd-hero-notes > span { border-bottom: 1px solid var(--detail-line); border-left: 0; }
    .sd-hero-notes > span:last-child { border-bottom: 0; }
    .sd-process-list li { grid-template-columns: 70px 1fr auto; }
    .sd-faq-grid { grid-template-columns: 1fr; }
    .sd-closing .sd-shell > div { align-items: stretch; flex-direction: column; }

    .article-reading { grid-template-columns: 1fr; }
    .article-rail-card { position: static; display: grid; grid-template-columns: 1fr 2fr; gap: 8px 30px; padding: 20px; border: 1px solid var(--detail-line); border-radius: 12px; }
    .article-rail-card > span { grid-column: 1/-1; }
    .article-rail dl { display: grid; grid-template-columns: repeat(3,1fr); grid-column: 1/-1; gap: 15px; margin-top: 15px; }
    .article-rail dl > div { padding: 11px 0; }
    .article-rail-tags { margin: 10px 0 0; }
    .article-back-link { align-self: end; margin: 10px 0 0; }
    .article-related-grid { grid-template-columns: 1fr; }
    .article-related-card { min-height: 250px; }

    .audit-result-overview { grid-template-columns: 1fr; }
    .audit-result-metrics { grid-column: auto; }
    .audit-result-findings > header { align-items: start; flex-direction: column; }
    .audit-result-counts { grid-template-columns: repeat(2,1fr); }
    .audit-result-issue-body { grid-template-columns: 1fr; padding-right: 72px; }
    .audit-result-action-grid { grid-template-columns: 1fr; }
    .audit-result-form { max-width: 560px; width: 100%; }
}

@media (max-width: 560px) {
    .pd-shell,.sd-shell,.article-shell,.audit-result-shell { width: calc(100% - 28px); }
    .pd-hero,.sd-hero,.article-hero,.audit-result-hero { padding-top: 32px; }
    .pd-breadcrumb,.sd-breadcrumb,.article-breadcrumb,.audit-result-breadcrumb { margin-bottom: 50px; }
    .pd-hero h1,.sd-hero-copy h1 { font-size: clamp(2.6rem,14vw,4.3rem); }
    .pd-hero-copy > p,.sd-hero-copy > p { margin-top: 22px; font-size: .86rem; }

    .pd-project-facts { grid-template-columns: 1fr; }
    .pd-project-facts > div { padding-inline: 0; border-left: 0; }
    .pd-cover-frame { min-height: 190px; aspect-ratio: 4/3; border-radius: 16px 16px 0 0; }
    .pd-cover figcaption { font-size: .625rem; }
    .pd-jumpbar { top: 61px; }
    .pd-jumpbar .pd-shell { width: 100%; padding-inline: 14px; }
    .pd-jumpbar .pd-shell > span { display: none; }
    .pd-jumpbar .pd-shell > div { gap: 25px; }
    .pd-progress-main header { align-items: start; flex-direction: column-reverse; }
    .pd-progress-main header > strong { font-size: 2.8rem; }
    .pd-progress-main h2,.pd-section-content > h2,.pd-stack > div > h2,.pd-gallery-head h2 { font-size: 1.72rem; }
    .pd-thinking-grid article { min-height: 0; padding: 24px; }
    .pd-impact .pd-section-content { padding: 25px; }
    .pd-impact .pd-section-content::before { display: none; }
    .pd-quote > p { font-size: 1.45rem; }
    .pd-stack li { min-height: 65px; }
    .pd-closing h2 { font-size: 2.35rem; }

    .sd-brief-card { border-radius: 14px; }
    .sd-hero-action { width: 100%; min-width: 0; }
    .sd-hero-notes > span { min-height: 60px; padding-inline: 5px; }
    .sd-intro h2,.sd-process h2,.sd-delivery h2,.sd-faq h2 { font-size: 1.75rem; }
    .sd-process-list li { grid-template-columns: 47px 1fr; gap: 16px; min-height: 100px; }
    .sd-process-list li > i { display: none; }
    .sd-process-list li > span { font-size: 1.25rem; }
    .sd-value-grid article { padding: 23px; }
    .sd-accordion summary { min-height: 76px; }
    .sd-accordion summary > span { gap: 12px; font-size: .76rem; }
    .sd-accordion details > div { padding: 0 33px 23px 15px; }
    .sd-closing h2 { margin-bottom: 35px; font-size: 2.4rem; }
    .sd-closing a { min-width: 0; width: 100%; }

    .article-hero h1 { font-size: clamp(2.25rem,12.5vw,3.8rem); }
    .article-hero > .article-shell > p { font-size: .86rem; }
    .article-author-line { flex-wrap: wrap; }
    .article-author-line i { display: none; }
    .article-author-line > small { flex-basis: 100%; padding-right: 55px; }
    .article-cover > div { min-height: 210px; aspect-ratio: 4/3; border-radius: 13px; }
    .article-cover figcaption { font-size: .625rem; }
    .article-rail-card { grid-template-columns: 1fr; }
    .article-rail dl { grid-template-columns: 1fr; }
    .article-rail-tags,.article-back-link { grid-column: 1; }
    .article-body { font-size: .91rem; line-height: 2.2; }
    .article-body blockquote { padding: 21px; }
    .article-end { align-items: start; flex-direction: column; }
    .article-related > .article-shell > header { align-items: start; flex-direction: column; }

    .audit-result-heading h1 { font-size: 2.35rem; }
    .audit-result-overview { margin-top: -20px; }
    .audit-result-score-card { align-items: start; flex-direction: column; }
    .audit-result-score-ring { width: 108px; height: 108px; }
    .audit-result-metrics { grid-template-columns: 1fr; padding: 8px 20px; }
    .audit-result-metrics > div { min-height: 58px; padding-inline: 0; border-bottom: 1px solid #e6e8ec; border-left: 0; }
    .audit-result-counts { grid-template-columns: 1fr; }
    .audit-result-category > header { padding-inline: 16px; }
    .audit-result-issue summary { grid-template-columns: 30px minmax(0,1fr) 22px; gap: 10px; min-height: 70px; padding-inline: 15px; }
    .audit-result-severity-label { display: none; }
    .audit-result-issue-title { font-size: .7rem; }
    .audit-result-issue-body { padding: 23px 55px 25px 15px; }
    .audit-result-action-copy > h2 { font-size: 2.1rem; }
    .audit-result-form { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    :where(.pd-page,.sd-page,.article-page,.audit-result-page) *,
    :where(.pd-page,.sd-page,.article-page,.audit-result-page) *::before,
    :where(.pd-page,.sd-page,.article-page,.audit-result-page) *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .audit-result-page { background: #fff; }
    .audit-result-hero { padding-block: 25px; color: #111; background: #fff; }
    .audit-result-hero * { color: #111 !important; }
    .audit-result-breadcrumb,.audit-result-date a,.audit-result-action,.ui-header,.ui-footer { display: none !important; }
    .audit-result-overview { margin-top: 20px; }
    .audit-result-category,.audit-result-issue { break-inside: avoid; }
    .audit-result-issue-body { display: grid !important; }
}

/* Integration with the fixed unified header + restrained type scale */
.pd-hero,
.sd-hero,
.article-hero,
.audit-result-hero {
    padding-top: calc(var(--ui-header, 76px) + 48px) !important;
}

.pd-hero h1,
.sd-hero-copy h1,
.article-hero h1,
.audit-result-hero h1 {
    font-size: clamp(1.75rem, 2.7vw, 2.35rem) !important;
    font-weight: 620 !important;
    line-height: 1.5 !important;
}

.pd-closing h2,
.sd-closing h2,
.article-closing h2,
.audit-result-action h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.95rem) !important;
    font-weight: 610 !important;
    line-height: 1.55 !important;
}

.pd-thinking-grid h3,
.pd-stack li small,
.pd-closing span {
    font-weight: 650 !important;
}

.pd-page :is(#pd-progress-title,#pd-overview-title,#pd-thinking-title,#pd-impact-title,#pd-stack-title,#pd-gallery-title,.pd-closing h2),
.sd-page :is(#sd-intro-title,#sd-process-title,#sd-delivery-title,#sd-faq-title,.sd-closing h2),
.article-page :is(.article-closing h2,.article-related h2),
.audit-result-page :is(#audit-result-findings-title,.audit-result-action h2) {
    max-width: none !important;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem) !important;
    font-weight: 600 !important;
    line-height: 1.65 !important;
    letter-spacing: -.02em !important;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.audit-result-validation {
    margin-bottom: 14px;
    color: #b42318;
    font-size: .72rem;
}

@media (max-width: 700px) {
    .pd-hero,
    .sd-hero,
    .article-hero,
    .audit-result-hero {
        padding-top: calc(var(--ui-header, 68px) + 30px) !important;
    }
    .pd-hero h1,
    .sd-hero-copy h1,
    .article-hero h1,
    .audit-result-hero h1 {
        font-size: clamp(1.15rem, 5vw, 1.65rem) !important;
    }
    .pd-page :is(#pd-progress-title,#pd-overview-title,#pd-thinking-title,#pd-impact-title,#pd-stack-title,#pd-gallery-title,.pd-closing h2),
    .sd-page :is(#sd-intro-title,#sd-process-title,#sd-delivery-title,#sd-faq-title,.sd-closing h2),
    .article-page :is(.article-closing h2,.article-related h2),
    .audit-result-page :is(#audit-result-findings-title,.audit-result-action h2) {
        font-size: clamp(.95rem, 4.1vw, 1.25rem) !important;
    }
}

/* --------------------------------------------------------------------------
   Liquid glass detail pages
   -------------------------------------------------------------------------- */
:where(.pd-page,.sd-page,.article-page,.audit-result-page) {
    --detail-ink: #122033;
    --detail-muted: #64748a;
    --detail-line: rgba(112, 137, 168, .18);
    --detail-paper: transparent;
    --detail-accent: #315cff;
    --detail-glass: rgba(255,255,255,.52);
    --detail-glass-strong: rgba(255,255,255,.72);
    --detail-glass-edge: rgba(255,255,255,.78);
    --detail-shadow: 0 22px 68px rgba(35,58,91,.12), 0 2px 8px rgba(35,58,91,.05), inset 0 1px 0 rgba(255,255,255,.88);
    background: transparent;
}

:where(.pd-page,.sd-page,.article-page,.audit-result-page) :where(h1,h2,h3) {
    text-wrap: balance;
}

:where(.pd-hero,.sd-hero,.article-hero,.audit-result-hero) {
    position: relative;
    margin: 0 var(--ui-gutter, 32px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 0 0 38px 38px;
    background:
        radial-gradient(circle at 15% 5%, rgba(71,105,255,.3), transparent 33%),
        radial-gradient(circle at 90% 90%, rgba(30,196,175,.16), transparent 32%),
        linear-gradient(145deg, rgba(7,20,39,.97), rgba(18,39,69,.93));
    box-shadow: 0 32px 85px rgba(18,39,68,.22), inset 0 1px 0 rgba(255,255,255,.16);
}

:where(.pd-hero,.sd-hero,.article-hero,.audit-result-hero)::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 32%, rgba(255,255,255,.025) 60%, transparent);
}

:where(.pd-hero,.sd-hero,.article-hero,.audit-result-hero) > * { position: relative; z-index: 1; }

:where(.pd-breadcrumb,.sd-breadcrumb,.article-breadcrumb,.audit-result-breadcrumb) {
    width: max-content;
    max-width: 100%;
    margin-bottom: clamp(34px,5vw,65px);
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.pd-hero h1,
.sd-hero-copy h1,
.article-hero h1,
.audit-result-hero h1 {
    max-width: 100%;
    font-size: clamp(1.45rem,2.35vw,2.05rem) !important;
    font-weight: 610 !important;
    line-height: 1.55 !important;
    letter-spacing: -.025em !important;
}

.pd-project-facts,
.sd-brief-card,
.audit-result-date {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 18px 45px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.16);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.pd-project-facts > div:last-child { border-bottom: 0; }
.pd-cover-frame,.article-cover > div { border-color: rgba(255,255,255,.2); box-shadow: 0 22px 62px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.18); }

.pd-jumpbar {
    top: calc(var(--ui-header,76px) + 8px);
    margin: 12px var(--ui-gutter,32px) 0;
    border: 1px solid var(--detail-glass-edge);
    border-radius: 18px;
    background: rgba(247,250,254,.72);
    box-shadow: 0 13px 40px rgba(35,58,91,.09), inset 0 1px 0 #fff;
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
}
.pd-jumpbar .pd-shell { min-height: 54px; }
.pd-jumpbar a { border-radius: 999px; transition: color .2s ease, background .2s ease; }
.pd-jumpbar a:hover { background: rgba(49,92,255,.08); color: var(--detail-accent); }

.pd-progress,
.pd-editorial-section,
.pd-stack,
.pd-quote,
.pd-gallery-grid figure,
.sd-intro,
.sd-process .sd-shell,
.sd-delivery,
.sd-faq-grid,
.article-rail-card,
.article-content,
.article-related-card,
.audit-result-score-card,
.audit-result-summary-card,
.audit-result-metrics,
.audit-result-counts > div,
.audit-result-category,
.audit-result-form {
    border: 1px solid var(--detail-glass-edge);
    border-radius: 26px;
    background: var(--detail-glass);
    box-shadow: var(--detail-shadow);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

/* Project detail */
.pd-progress { margin-block: clamp(46px,7vw,90px); padding: clamp(25px,4vw,50px); }
.pd-story { display: grid; gap: 24px; }
.pd-editorial-section { padding: clamp(28px,5vw,66px); }
.pd-editorial-section + .pd-editorial-section { margin-top: 0; }
.pd-thinking-grid article { border: 1px solid rgba(255,255,255,.68); border-radius: 21px; background: rgba(255,255,255,.42); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.pd-thinking-grid .pd-solution-card { background: linear-gradient(145deg,rgba(222,232,255,.6),rgba(237,232,255,.52)); }
.pd-thinking-grid .pd-solution-card > span { color: #52647b; }
.pd-thinking-grid .pd-solution-card h3,
.pd-thinking-grid .pd-solution-card .pd-rich,
.pd-thinking-grid .pd-solution-card .pd-rich :where(h2,h3,h4) { color: #17263a; }
.pd-thinking-grid .pd-solution-card .pd-rich { color: #53657c; }
.pd-thinking-grid h3 { max-width: none; margin-top: 30px; font-size: clamp(1.05rem,1.35vw,1.3rem); line-height: 1.55; white-space: nowrap; }
.pd-impact .pd-section-content { border: 1px solid rgba(255,255,255,.72); border-radius: 22px; background: rgba(255,255,255,.4); }
.pd-quote-wrap { background: transparent; }
.pd-quote { padding: clamp(30px,5vw,62px); }
.pd-stack { margin-block: clamp(35px,6vw,75px); padding: clamp(28px,5vw,60px); }
.pd-stack li { border-color: rgba(255,255,255,.72); border-radius: 16px; background: rgba(255,255,255,.42); box-shadow: inset 0 1px 0 rgba(255,255,255,.78); }
.pd-gallery { background: rgba(216,228,247,.34); }
.pd-gallery-grid { gap: 14px; }
.pd-gallery-grid figure { padding: 9px; border-radius: 23px; overflow: hidden; }
.pd-gallery-grid img { border-radius: 16px; }
.pd-closing { margin: 0 var(--ui-gutter,32px) var(--ui-gutter,32px); border: 1px solid rgba(255,255,255,.18); border-radius: 34px; background: linear-gradient(145deg,rgba(8,22,42,.96),rgba(21,43,73,.92)); box-shadow: 0 30px 80px rgba(16,35,62,.2),inset 0 1px 0 rgba(255,255,255,.15); }
.pd-closing h2 { font-size: clamp(1.2rem,1.8vw,1.6rem) !important; }
.pd-closing-actions { gap: 10px; border-top: 0; }
.pd-closing-actions a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-inline: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.11); }
.pd-closing-actions .pd-action-label { color: inherit; font-size: .78rem; font-weight: 650; line-height: 1.5; white-space: nowrap; }
.pd-closing-actions :is(.ui-link-icon,.ui-external-icon) { color: currentColor; }
.pd-closing-actions .pd-primary-action { background: linear-gradient(135deg,#315cff,#7045dc); }

/* Service detail */
.sd-brief-card { padding: 0; overflow: hidden; }
.sd-brief-top,.sd-brief-card dl,.sd-brief-card > p { background: transparent; }
.sd-hero-action,.sd-closing a { display: inline-flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.32); border-radius: 15px; background: linear-gradient(135deg,rgba(49,92,255,.96),rgba(112,69,220,.93)); box-shadow: 0 16px 36px rgba(48,67,171,.22),inset 0 1px 0 rgba(255,255,255,.28); }
.sd-hero-notes { gap: 8px; margin-bottom: 14px; border: 0; }
.sd-hero-notes > span { border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.1); }
.sd-intro,.sd-delivery { margin-block: clamp(40px,7vw,85px); padding: clamp(28px,5vw,62px); }
.sd-process { background: transparent; }
.sd-process .sd-shell { padding: clamp(28px,5vw,62px); }
.sd-process-list { display: grid; gap: 9px; }
.sd-process-list li { border: 1px solid rgba(255,255,255,.72); border-radius: 18px; background: rgba(255,255,255,.4); box-shadow: inset 0 1px 0 rgba(255,255,255,.78); }
.sd-step-mark { position: relative; width: 28px; height: 28px; border: 1px solid rgba(49,92,255,.16); border-radius: 50%; background: rgba(49,92,255,.08); }
.sd-step-mark::before { position: absolute; inset: 50% auto auto 50%; width: 6px; height: 6px; border-radius: 50%; content: ""; background: var(--detail-accent); translate: -50% -50%; box-shadow: 0 0 0 4px rgba(49,92,255,.1); }
.sd-value-grid article { border: 1px solid rgba(255,255,255,.72); border-radius: 20px; background: rgba(255,255,255,.4); box-shadow: inset 0 1px 0 rgba(255,255,255,.78); }
.sd-faq { background: rgba(215,228,247,.32); }
.sd-faq-grid { padding: clamp(28px,5vw,62px); }
.sd-accordion details { margin-bottom: 8px; border: 1px solid rgba(255,255,255,.74); border-radius: 17px; background: rgba(255,255,255,.42); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.sd-closing { margin: 0 var(--ui-gutter,32px) var(--ui-gutter,32px); border-radius: 34px; }
.sd-closing h2 { font-size: clamp(1.2rem,1.8vw,1.6rem) !important; }

/* Article */
.article-cover { margin-top: -36px; }
.article-cover > div { padding: 9px; border-radius: 25px; background: rgba(255,255,255,.1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.article-cover img { border-radius: 18px; }
.article-reading { align-items: start; }
.article-rail-card { top: calc(var(--ui-header,76px) + 28px); padding: 22px; }
.article-content { min-width: 0; padding: clamp(26px,4vw,54px); }
.article-content-label { border-color: var(--detail-line); }
.article-body { color: var(--detail-ink); }
.article-body :where(h2,h3) { font-size: clamp(1.05rem,1.45vw,1.35rem); font-weight: 650; line-height: 1.75; }
.article-body blockquote { border: 1px solid rgba(255,255,255,.72); border-radius: 18px; background: rgba(224,233,255,.48); box-shadow: inset 0 1px 0 rgba(255,255,255,.78); }
.article-body pre { border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(8,22,42,.94); box-shadow: 0 18px 45px rgba(16,35,62,.16),inset 0 1px 0 rgba(255,255,255,.1); }
.article-back-link,.article-end a,.article-related header > a,.article-related-card footer { display: inline-flex; align-items: center; gap: 8px; }
.article-end { border-color: var(--detail-line); }
.article-end h2 { font-size: clamp(1.05rem,1.45vw,1.3rem); }
.article-related { background: rgba(215,228,247,.32); }
.article-related-card { padding: 24px; transition: transform .22s ease,background .22s ease,box-shadow .22s ease; }
.article-related-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.68); box-shadow: 0 28px 74px rgba(35,58,91,.16),inset 0 1px 0 #fff; }
.article-related-card h3 { font-size: clamp(1rem,1.3vw,1.2rem); }

/* Audit result */
.audit-result-page { padding-bottom: 1px; }
.audit-result-overview { gap: 14px; margin-top: -38px; }
.audit-result-score-card,.audit-result-summary-card,.audit-result-metrics { border-color: var(--detail-glass-edge); }
.audit-result-score-card,.audit-result-summary-card { padding: 28px; }
.audit-result-score-ring { filter: drop-shadow(0 16px 24px rgba(49,92,255,.14)); }
.audit-result-metrics { overflow: hidden; }
.audit-result-findings > header { padding: 25px; border: 1px solid var(--detail-glass-edge); border-radius: 22px; background: rgba(255,255,255,.43); box-shadow: 0 15px 42px rgba(35,58,91,.07),inset 0 1px 0 rgba(255,255,255,.86); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.audit-result-counts { gap: 9px; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.audit-result-counts > div { padding: 18px; border-radius: 18px; }
.audit-result-categories { display: grid; gap: 15px; }
.audit-result-category { overflow: hidden; }
.audit-result-category > header { border-color: var(--detail-line); background: rgba(255,255,255,.28); }
.audit-result-issue { margin: 8px; border: 1px solid rgba(255,255,255,.7); border-radius: 17px; background: rgba(255,255,255,.42); box-shadow: inset 0 1px 0 rgba(255,255,255,.78); }
.audit-result-issue-body { border-color: var(--detail-line); }
.audit-result-action { margin: 70px var(--ui-gutter,32px) var(--ui-gutter,32px); border: 1px solid rgba(255,255,255,.18); border-radius: 34px; background: linear-gradient(145deg,rgba(8,22,42,.96),rgba(21,43,73,.92)); box-shadow: 0 30px 80px rgba(16,35,62,.2),inset 0 1px 0 rgba(255,255,255,.15); }
.audit-result-action h2 { font-size: clamp(1.2rem,1.8vw,1.6rem) !important; }
.audit-result-form { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.09); box-shadow: 0 22px 60px rgba(0,0,0,.15),inset 0 1px 0 rgba(255,255,255,.16); }
.audit-result-field input,.audit-result-field textarea { border-color: rgba(255,255,255,.22); border-radius: 14px; background: rgba(255,255,255,.86); box-shadow: inset 0 2px 5px rgba(27,48,77,.08); }
.audit-result-form button { display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.24); border-radius: 14px; background: linear-gradient(135deg,#315cff,#7045dc); box-shadow: 0 16px 36px rgba(48,67,171,.24),inset 0 1px 0 rgba(255,255,255,.27); }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    :where(.pd-progress,.pd-editorial-section,.pd-stack,.pd-quote,.pd-gallery-grid figure,.sd-intro,.sd-process .sd-shell,.sd-delivery,.sd-faq-grid,.article-rail-card,.article-content,.article-related-card,.audit-result-score-card,.audit-result-summary-card,.audit-result-metrics,.audit-result-counts>div,.audit-result-category) { background: #f7fafd; }
    :where(.pd-project-facts,.sd-brief-card,.audit-result-date,.audit-result-form) { background: #1c2d49; }
}

@media (max-width: 820px) {
    :where(.pd-hero,.sd-hero,.article-hero,.audit-result-hero) { margin-inline: 10px; border-radius: 0 0 28px 28px; }
    .pd-jumpbar { margin-inline: 10px; }
    .pd-progress,.pd-editorial-section,.pd-stack,.sd-intro,.sd-process .sd-shell,.sd-delivery,.sd-faq-grid,.article-content { padding: 26px 20px; border-radius: 22px; }
    .pd-story { gap: 14px; }
    .pd-project-facts { padding: 9px 16px; }
    .pd-closing,.sd-closing,.audit-result-action { margin-inline: 10px; border-radius: 27px; }
    .article-rail-card { border-radius: 20px; }
    .audit-result-overview { margin-top: -20px; }
    .audit-result-counts { gap: 8px; }
}

@media (max-width: 560px) {
    .pd-hero h1,.sd-hero-copy h1,.article-hero h1,.audit-result-hero h1 { font-size: clamp(1.12rem,5vw,1.45rem) !important; white-space: normal; }
    :where(.pd-breadcrumb,.sd-breadcrumb,.article-breadcrumb,.audit-result-breadcrumb) { margin-bottom: 34px; }
    .pd-jumpbar { top: calc(var(--ui-header,68px) + 6px); border-radius: 15px; }
    .pd-editorial-section,.sd-intro,.sd-process .sd-shell,.sd-delivery,.sd-faq-grid,.article-content { padding: 23px 17px; }
    .pd-thinking-grid article,.sd-value-grid article { padding: 20px; }
    .article-cover { margin-top: -20px; }
    .article-body :where(h2,h3) { font-size: 1.03rem; }
    .audit-result-score-card,.audit-result-summary-card { padding: 22px 18px; }
    .audit-result-action { margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
    .article-related-card:hover { transform: none; }
}
