:root {
    --ier-bg: #f5f8f8;
    --ier-ink: #10242a;
    --ier-teal: #1f9194;
    --ier-teal-dark: #0f5e63;
    --ier-soft: #d9e9e8;
    --ier-white: #ffffff;
    --ier-border: rgba(16, 36, 42, 0.12);
}

@keyframes ierButtonShine {
    from { transform: translateX(-140%) skewX(-18deg); }
    to { transform: translateX(240%) skewX(-18deg); }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--ier-ink);
    background: var(--ier-bg);
    overflow-x: hidden;
}

h1, h2, h3 {
    margin: 0 0 0.75rem;
    font-family: "League Spartan", sans-serif;
    line-height: 0.95;
}

p {
    line-height: 1.6;
}

.ier-container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.ier-topbar,
.ier-navbar {
    background: #0f2f35;
    color: var(--ier-white);
}

.ier-topbar .ier-container,
.ier-navbar .ier-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.ier-navbar {
    background: var(--ier-white);
    color: var(--ier-ink);
    border-bottom: 1px solid var(--ier-border);
}

.ier-site-footer {
    position: relative;
    overflow: hidden;
    background: #0d2024;
    color: #fff;
}

.ier-footer-accent {
    height: 34px;
    background: #49b7bd;
}

.ier-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) repeat(2, minmax(150px, 0.72fr)) minmax(250px, 0.95fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
    padding: clamp(4.5rem, 8vw, 8.75rem) 0 3.5rem;
}

.ier-footer-logo {
    display: grid;
    width: 156px;
    height: 104px;
    place-items: center;
    margin-bottom: 1.9rem;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f3fbfb);
    box-shadow: 0 18px 44px -34px rgba(0, 0, 0, 0.72);
}

.ier-footer-logo img {
    width: 130px;
    height: auto;
    object-fit: contain;
}

.ier-footer-brand p {
    max-width: 38ch;
    margin: 0 0 1.5rem;
    color: #fff;
    font-weight: 650;
    line-height: 1.7;
}

.ier-footer-cert strong {
    display: block;
    color: #f3b51e;
    font-size: 0.92rem;
}

.ier-footer-cert span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.ier-footer-social {
    display: flex;
    gap: 1.1rem;
    margin-top: 3rem;
}

.ier-footer-social a {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.ier-footer-column h3 {
    margin: 0 0 2rem;
    color: #49c1c9;
    font-family: "League Spartan", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.ier-footer-column ul {
    display: grid;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ier-footer-column a,
.ier-footer-column strong {
    color: #fff;
    font-weight: 750;
    text-decoration: none;
}

.ier-footer-column a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.ier-footer-column a:hover,
.ier-footer-column a:focus-visible {
    color: #7bd3d5;
}

.ier-footer-contact li {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 0.65rem 0.95rem;
    align-items: start;
}

.ier-footer-contact li > span {
    color: #49c1c9;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ier-footer-contact small {
    display: block;
    grid-column: 2;
    color: #9cb8c5;
    font-size: 0.9rem;
}

.ier-footer-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    border-radius: 999px;
    background: #49b7bd;
    color: #fff;
    font-weight: 900;
    padding: 0 1.8rem;
    text-decoration: none;
    box-shadow: 0 18px 34px -22px rgba(73, 183, 189, 0.85);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.ier-footer-hours {
    margin: 1.5rem 0 0;
    color: #9cb8c5;
}

.ier-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9cb8c5;
    font-size: 0.9rem;
}

.ier-footer-bottom a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #d8f3f3;
    text-decoration: none;
}

.ier-brand {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.ier-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    background: var(--ier-teal);
    color: var(--ier-white);
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.ier-button::after,
.ier-footer-cta::after,
.ier-topbar-seai::after {
    content: "";
    position: absolute;
    inset: -45% auto -45% -70%;
    width: 46%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    opacity: 0;
    pointer-events: none;
}

.ier-button:hover,
.ier-button:focus-visible,
.ier-footer-cta:hover,
.ier-footer-cta:focus-visible,
.ier-topbar-seai:hover,
.ier-topbar-seai:focus-visible {
    transform: translateY(-1px);
}

.ier-button:hover::after,
.ier-button:focus-visible::after,
.ier-footer-cta:hover::after,
.ier-footer-cta:focus-visible::after,
.ier-topbar-seai:hover::after,
.ier-topbar-seai:focus-visible::after {
    animation: ierButtonShine 760ms ease;
    opacity: 1;
}

.ier-button.is-secondary,
.ier-button.is-secondary:visited {
    background: var(--ier-white);
    color: var(--ier-ink);
    border: 1px solid var(--ier-border);
}

.ier-mobile-cta {
    display: none;
}

.ie-back-to-top {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1.1rem, env(safe-area-inset-bottom));
    z-index: 74;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(44, 181, 186, 0.98), rgba(15, 111, 115, 0.98));
    box-shadow:
        0 18px 34px rgba(7, 31, 36, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.65rem);
    transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ie-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ie-back-to-top span {
    width: 0.72rem;
    height: 0.72rem;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: translateY(0.18rem) rotate(45deg);
}

.ie-back-to-top:hover,
.ie-back-to-top:focus-visible {
    box-shadow:
        0 22px 38px rgba(7, 31, 36, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    outline: none;
    transform: translateY(-0.08rem);
}

@media (min-width: 721px) {
    body:has(.ieme-consent:not([hidden])) .ie-back-to-top {
        bottom: calc(5.25rem + env(safe-area-inset-bottom));
    }
}

.ier-hero,
.ier-page {
    padding: 5rem 0;
}

.ier-page--soft {
    background: linear-gradient(180deg, #edf5f4, #f9fcfc);
}

.ier-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(8, 28, 34, 0.92), rgba(16, 63, 69, 0.76)),
        radial-gradient(circle at top right, rgba(189, 224, 182, 0.38), transparent 35%),
        linear-gradient(135deg, #12343a, #1a5b60);
    color: var(--ier-white);
}

.ier-hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(120, 196, 198, 0.12), transparent 40%),
        linear-gradient(45deg, rgba(255, 224, 146, 0.08), transparent 50%);
    pointer-events: none;
}

.ier-hero .ier-container {
    position: relative;
    z-index: 1;
}

.ier-hero-copy {
    max-width: 52rem;
    margin-bottom: 1.5rem;
}

.ier-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ier-teal);
}

.ier-lead {
    max-width: 60ch;
    font-size: 1.1rem;
}

.ier-hero h1 {
    font-size: clamp(3rem, 7vw, 5.75rem);
    line-height: 0.9;
}

.ier-hero .ier-lead,
.ier-hero .ier-eyebrow {
    color: rgba(255, 255, 255, 0.92);
}

.ier-panel,
.ier-card {
    padding: 1.5rem;
    border: 1px solid var(--ier-border);
    border-radius: 1.5rem;
    background: var(--ier-white);
}

.ier-band {
    padding: 1rem 0;
    background: #eff6f6;
    border-top: 1px solid rgba(16, 36, 42, 0.08);
    border-bottom: 1px solid rgba(16, 36, 42, 0.08);
}

.ier-logo-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.ier-logo-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid var(--ier-border);
    text-align: center;
    font-weight: 700;
}

.ier-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ier-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.ier-cutaway-stack {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ier-page-hero {
    padding: 4.5rem 0 3rem;
    background:
        linear-gradient(120deg, rgba(8, 28, 34, 0.92), rgba(16, 63, 69, 0.76)),
        radial-gradient(circle at top right, rgba(189, 224, 182, 0.28), transparent 35%),
        linear-gradient(135deg, #12343a, #1a5b60);
    color: #fff;
}

.ier-page-hero .ier-eyebrow,
.ier-page-hero .ier-lead,
.ier-page-hero .ier-card-kicker,
.ier-page-hero p {
    color: rgba(255, 255, 255, 0.88);
}

.ier-split-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 2rem;
    align-items: center;
}

.ier-team-hero-card,
.ier-hero-media {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(6, 25, 30, 0.28);
}

.ier-team-hero-card img,
.ier-hero-media img,
.ier-person-card__media img,
.ier-article-card__media img,
.ier-case-card__media img,
.ier-team-profile__media img,
.ier-article-featured img,
.ier-before-after img {
    display: block;
    width: 100%;
    height: auto;
}

.ier-team-hero-card figcaption {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.15rem 1.2rem;
    color: #fff;
    background: rgba(7, 31, 37, 0.78);
}

.ier-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ier-chip-row a,
.ier-chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(16, 36, 42, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ier-ink);
    text-decoration: none;
    font-weight: 600;
}

.ier-card-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--ier-teal-dark);
}

.ier-people-grid,
.ier-article-grid,
.ier-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    margin-top: 2rem;
}

.ier-person-card,
.ier-article-card,
.ier-case-card {
    overflow: hidden;
    border: 1px solid var(--ier-border);
    border-radius: 1.6rem;
    background: #fff;
    box-shadow: 0 20px 50px rgba(9, 31, 35, 0.08);
}

.ier-person-card__body,
.ier-article-card__body,
.ier-case-card__body {
    display: grid;
    gap: 0.9rem;
    padding: 1.2rem;
}

.ier-person-card__body h3,
.ier-article-card__body h2,
.ier-case-card__body h2,
.ier-article-card__body h3 {
    margin-bottom: 0;
}

.ier-person-card__body a,
.ier-article-card__body a,
.ier-case-card__body a {
    color: inherit;
    text-decoration: none;
}

.ier-person-card__role {
    margin: -0.2rem 0 0;
    color: var(--ier-teal-dark);
    font-weight: 700;
}

.ier-article-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
}

.ier-case-card__metrics,
.ier-metric-list {
    display: grid;
    gap: 0.75rem;
}

.ier-case-card__metrics div,
.ier-metric-list div {
    padding: 0.9rem 1rem;
    border: 1px solid var(--ier-border);
    border-radius: 1rem;
    background: #f7fbfb;
}

.ier-case-card__metrics span,
.ier-metric-list span {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f7a80;
}

.ier-case-card__metrics strong,
.ier-metric-list strong {
    color: var(--ier-ink);
}

.ier-reference-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ier-reference-card {
    padding: 1rem 1.1rem;
    border: 1px solid var(--ier-border);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.96);
}

.ier-reference-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-weight: 700;
}

.ie-shell {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.ie-content-archive {
    background: #f4f8f8;
}

.ie-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 5.2vw, 4.5rem) 0 clamp(2.4rem, 4vw, 3.2rem);
    background:
        linear-gradient(120deg, rgba(10, 38, 43, 0.96), rgba(24, 91, 94, 0.86)),
        linear-gradient(135deg, #0d2024, #23696b);
    color: #fff;
}

.ie-page-hero .ie-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: center;
}

.ie-page-hero--image-led .ie-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.58fr);
}

.ie-page-hero--image-led .ie-reference-visual {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
}

.ie-page-hero--walkthrough-led .ie-shell {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.ie-page-hero--calculator-led {
    overflow: visible;
    padding-block: clamp(2.4rem, 4vw, 3.6rem);
}

.ie-page-hero--calculator-led .ie-shell {
    align-items: start;
    gap: clamp(2rem, 4vw, 4.25rem);
    grid-template-columns: minmax(18rem, 0.68fr) minmax(37rem, 1.32fr);
    width: min(1320px, calc(100% - 2rem));
}

.ie-page-hero--calculator-led .ie-shell > div:first-child {
    align-content: start !important;
    padding-top: clamp(1rem, 2.5vw, 2rem);
}

.ie-page-hero--calculator-led h1 {
    font-size: clamp(3rem, 5vw, 4.7rem);
    max-width: 9ch;
}

.ie-page-hero--calculator-led .ie-page-intro {
    max-width: 31rem;
}

.ie-reference-hero-calculator {
    min-width: 0;
    width: 100%;
}

.ie-page-hero--walkthrough-led.ie-page-hero--calculator-led .ie-shell {
    grid-template-columns: minmax(18rem, 0.68fr) minmax(37rem, 1.32fr);
}

.ie-page-hero--walkthrough-led.ie-page-hero--calculator-led .ie-shell > div:first-child {
    grid-column: 1;
    margin-top: 0;
    max-width: none;
    order: 0;
}

.ie-page-hero--walkthrough-led.ie-page-hero--calculator-led .ie-reference-hero-calculator {
    grid-column: 2;
    order: 1;
}

.ie-page-hero--walkthrough-led.ie-page-hero--calculator-led .ie-reference-hero-walkthrough {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    order: 2;
}

.ie-reference-hero-walkthrough {
    order: 1;
    width: 100%;
    min-width: 0;
}

.ie-reference-hero-walkthrough .iece-card {
    width: 100%;
    min-height: clamp(30rem, 56vw, 42rem);
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.ie-reference-hero-walkthrough .iece-card__copy {
    padding: clamp(1rem, 2vw, 1.5rem);
}

.ie-reference-hero-walkthrough .iece-card__copy h3 {
    font-size: clamp(1.75rem, 3vw, 3rem);
}

.ie-reference-hero-walkthrough .iece-card__media img {
    min-height: clamp(24rem, 42vw, 36rem);
}

.ie-page-hero--walkthrough-led .ie-shell > div:first-child {
    order: 2;
    max-width: 760px;
    margin-top: clamp(1.1rem, 2.6vw, 1.8rem);
}

.ie-page-hero--walkthrough-led h1 {
    max-width: 700px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.98;
}

.ie-page-hero--walkthrough-led .ie-page-intro {
    max-width: 640px;
}

.ie-page-hero .ie-eyebrow {
    margin: 0;
    color: #7bd3d5;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-page-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2.85rem, 6vw, 4.85rem);
    line-height: 0.92;
    overflow-wrap: break-word;
}

.ie-page-intro {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.65;
    overflow-wrap: break-word;
}

.ie-reference-page .ie-page-hero .ie-button {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #49b7bd;
    color: #fff;
    padding: 0.75rem 1.15rem;
    font-weight: 900;
    text-decoration: none;
}

.ie-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.ie-reference-page .ie-page-hero .ie-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #d8fbfb;
}

.ie-reference-visual {
    position: relative;
    display: grid;
    gap: 0.85rem;
    min-height: 320px;
    align-content: end;
    overflow: hidden;
    border: 1px solid rgba(123, 211, 213, 0.3);
    border-radius: 8px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(123, 211, 213, 0.06)),
        radial-gradient(circle at 30% 18%, rgba(123, 211, 213, 0.34), transparent 28%),
        rgba(8, 31, 36, 0.62);
    padding: clamp(1.2rem, 2vw, 1.6rem);
    box-shadow: 0 24px 54px rgba(3, 19, 23, 0.28);
}

.ie-reference-visual::before {
    content: none;
    display: none;
}

.ie-reference-visual div {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    padding: 0.8rem 0.9rem;
    backdrop-filter: blur(10px);
}

.ie-reference-visual span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-reference-visual strong {
    color: #fff;
    font-weight: 950;
}

.ie-reference-lens {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.25rem);
    margin: clamp(-2rem, -2.4vw, -1rem) auto clamp(2.4rem, 5vw, 4rem);
    position: relative;
    z-index: 2;
}

.ie-reference-lens article {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-height: 190px;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    padding: clamp(1rem, 2vw, 1.25rem);
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.08);
}

.ie-reference-lens span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 999px;
    background: #e8f5f5;
    color: #0f6f73;
    font-weight: 950;
}

.ie-reference-lens h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.3rem, 2.3vw, 1.8rem);
    line-height: 1;
}

.ie-reference-lens p {
    margin: 0.5rem 0 0;
    color: #486168;
    line-height: 1.58;
}

.ie-reference-page .ie-proof-grid {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    padding: 0;
}

.ie-reference-page .ie-proof-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 0.55rem;
    min-height: 0;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff, #f2fafa);
    padding: clamp(0.95rem, 1.8vw, 1.15rem);
    box-shadow: 0 16px 34px rgba(9, 31, 35, 0.06);
}

.ie-reference-page .ie-proof-card::before {
    content: "";
    width: 2.1rem;
    height: 0.28rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #325859, #6dbbbf);
}

.ie-reference-page .ie-proof-card strong {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    line-height: 1.02;
}

.ie-reference-page .ie-proof-card p {
    margin: 0;
    color: #486168;
    font-size: 0.94rem;
    line-height: 1.48;
}

.ie-image-slot {
    display: block;
    overflow: hidden;
    min-height: 100%;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        linear-gradient(145deg, rgba(50, 88, 89, 0.92), rgba(9, 43, 49, 0.94));
}

.ie-image-slot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 15rem;
    object-fit: cover;
}

.ie-image-slot--pending {
    display: grid;
    min-height: 15rem;
    place-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(142, 226, 229, 0.24);
    padding: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.ie-image-slot--pending span {
    color: #8ee2e5;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-image-slot--pending strong {
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1;
}

.ie-reference-hero-image {
    min-height: clamp(18rem, 34vw, 28rem);
    border: 1px solid rgba(142, 226, 229, 0.24);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 28px 70px -46px rgba(7, 24, 29, 0.82);
}

.ie-reference-hero-image .ie-image-slot,
.ie-reference-hero-image img {
    height: 100%;
}

.ie-reference-image-story {
    display: grid;
    width: min(1180px, calc(100% - 32px));
    gap: clamp(1.15rem, 2.4vw, 1.8rem);
    margin: clamp(2rem, 5vw, 4.5rem) auto;
}

.ie-reference-image-story__head {
    display: grid;
    max-width: 820px;
    gap: 0.7rem;
}

.ie-reference-image-story__head h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.98;
}

.ie-reference-image-story__head p:not(.ie-eyebrow) {
    margin: 0;
    color: #486168;
    font-size: 1.05rem;
    line-height: 1.65;
}

.ie-reference-image-story__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}

.ie-reference-image-story__grid article {
    overflow: hidden;
    display: grid;
    min-height: 27rem;
    align-content: stretch;
    border-radius: 8px;
    background: #0b2227;
    color: #fff;
    box-shadow: 0 24px 60px rgba(8, 34, 39, 0.13);
}

.ie-reference-image-story__grid article:first-child:nth-last-child(3),
.ie-reference-image-story__grid article:first-child:nth-last-child(3) ~ article {
    min-height: 24rem;
}

.ie-reference-image-story__grid article:first-child:nth-last-child(3) {
    grid-row: auto;
}

.ie-reference-image-story__media {
    display: block;
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.ie-reference-image-story__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.ie-reference-image-story__grid article > div {
    position: relative;
    grid-area: 1 / 1;
    align-self: end;
    padding: clamp(1.2rem, 2.8vw, 2rem);
    background: linear-gradient(180deg, transparent 0%, rgba(7, 24, 29, 0.88) 78%);
}

.ie-reference-image-story__grid h3 {
    max-width: 18ch;
    margin: 0;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 0.98;
}

.ie-reference-image-story__grid p {
    max-width: 42rem;
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.62;
}

.ie-proof-examples {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    gap: clamp(1rem, 2.4vw, 1.6rem);
    margin: 0 auto clamp(2.4rem, 5vw, 4rem);
}

.ie-proof-examples__head {
    display: grid;
    max-width: 820px;
    gap: 0.7rem;
}

.ie-proof-examples__head h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.96;
}

.ie-proof-examples__head p:not(.ie-eyebrow) {
    margin: 0;
    color: #486168;
    font-size: 1.04rem;
    line-height: 1.64;
}

.ie-proof-examples__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.ie-proof-examples__grid article {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    min-height: 100%;
    border: 1px solid rgba(50, 88, 89, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, #fff, #f2fafa);
    padding: clamp(0.95rem, 1.8vw, 1.15rem);
    box-shadow: 0 16px 36px rgba(9, 31, 35, 0.06);
}

.ie-proof-examples__grid span {
    color: #0f6f73;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-proof-examples__grid h3 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    line-height: 1;
}

.ie-proof-examples__grid p,
.ie-proof-examples__grid li {
    color: #486168;
    font-size: 0.93rem;
    line-height: 1.48;
}

.ie-proof-examples__grid p,
.ie-proof-examples__grid ul {
    margin: 0;
}

.ie-proof-examples__grid ul {
    display: grid;
    gap: 0.35rem;
    padding-left: 1.1rem;
}

.ie-decision-pack {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
    margin: 0 auto clamp(2.4rem, 5vw, 4rem);
    border: 1px solid rgba(50, 88, 89, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(109, 187, 191, 0.12), rgba(255, 255, 255, 0.92) 38%),
        #f6fbfb;
    padding: clamp(1.1rem, 3vw, 2rem);
    box-shadow: 0 22px 54px rgba(9, 31, 35, 0.08);
}

.ie-decision-pack__head {
    position: sticky;
    top: 6rem;
    display: grid;
    gap: 0.7rem;
}

.ie-decision-pack__head h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 0.96;
}

.ie-decision-pack__head p:not(.ie-eyebrow) {
    margin: 0;
    color: #486168;
    font-size: 1rem;
    line-height: 1.65;
}

.ie-decision-pack__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.ie-decision-pack__grid article {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 0.55rem;
    min-height: 250px;
    border: 1px solid rgba(50, 88, 89, 0.12);
    border-radius: 8px;
    background: #fff;
    padding: clamp(1rem, 2vw, 1.25rem);
    box-shadow: 0 18px 40px rgba(9, 31, 35, 0.07);
}

.ie-decision-pack__grid article::after {
    content: "";
    position: absolute;
    right: -2.8rem;
    bottom: -2.8rem;
    width: 7rem;
    height: 7rem;
    border: 1.15rem solid rgba(109, 187, 191, 0.16);
    border-radius: 999px;
}

.ie-decision-pack__grid span {
    width: fit-content;
    border-radius: 999px;
    background: #e8f5f5;
    color: #0f6f73;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    padding: 0.38rem 0.56rem;
    text-transform: uppercase;
}

.ie-decision-pack__grid h3 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    line-height: 1;
}

.ie-decision-pack__grid p {
    margin: 0;
    color: #486168;
    font-size: 0.95rem;
    line-height: 1.52;
}

.ie-decision-pack__grid strong {
    align-self: end;
    color: #325859;
    font-size: 0.92rem;
    line-height: 1.35;
}

.ie-reference-handoff {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
    margin: 0 auto clamp(2.4rem, 5vw, 4rem);
    border: 1px solid rgba(123, 211, 213, 0.26);
    border-radius: 8px;
    background:
        radial-gradient(circle at 100% 0%, rgba(109, 187, 191, 0.22), transparent 36%),
        linear-gradient(135deg, #0c3439, #325859);
    padding: clamp(1.15rem, 3vw, 2rem);
    color: #fff;
    box-shadow: 0 24px 58px rgba(9, 31, 35, 0.18);
}

.ie-reference-handoff__head {
    display: grid;
    gap: 0.65rem;
}

.ie-reference-handoff .ie-eyebrow {
    margin: 0;
    color: #8ee2e5;
}

.ie-reference-handoff h2 {
    margin: 0;
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 0.98;
}

.ie-reference-handoff__head p:not(.ie-eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.62;
}

.ie-reference-handoff__steps {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    counter-reset: handoff;
    list-style: none;
}

.ie-reference-handoff__steps li {
    display: grid;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.72rem;
    align-items: center;
    min-height: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.72rem 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 850;
    line-height: 1.32;
}

.ie-reference-handoff__steps li::before {
    counter-increment: handoff;
    content: counter(handoff);
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 999px;
    background: #8ee2e5;
    color: #0b2c31;
    font-weight: 950;
}

.ie-reference-rich {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    gap: 1rem;
    padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.ie-reference-rich__item {
    display: grid;
    gap: 0.8rem;
    border-top: 1px solid rgba(16, 36, 42, 0.12);
    padding: clamp(1.6rem, 3vw, 2.4rem) 0 0;
}

.ie-reference-rich__item h2 {
    max-width: 820px;
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    line-height: 0.98;
}

.ie-reference-rich__item p:not(.ie-eyebrow) {
    max-width: 820px;
    margin: 0;
    color: #486168;
    font-size: 1.02rem;
    line-height: 1.68;
}

.ie-reference-rich--compact {
    gap: 0.85rem;
}

.ie-reference-rich--compact .ie-reference-rich__item {
    overflow: hidden;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    padding: 0;
    box-shadow: 0 16px 38px rgba(9, 31, 35, 0.06);
}

.ie-reference-rich--compact summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.75rem;
    row-gap: 0.2rem;
    align-items: center;
    min-height: 76px;
    padding: 1rem 1.15rem;
    cursor: pointer;
    list-style: none;
}

.ie-reference-rich--compact summary::-webkit-details-marker {
    display: none;
}

.ie-reference-rich--compact summary::after {
    content: "";
    display: block;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    width: 0.72rem;
    height: 0.72rem;
    border-right: 2px solid #0f6f73;
    border-bottom: 2px solid #0f6f73;
    transform: rotate(45deg);
    transition: transform 160ms ease;
}

.ie-reference-rich--compact details[open] summary::after {
    transform: rotate(225deg);
}

.ie-reference-rich--compact summary span {
    display: block;
    grid-column: 1;
    color: #0f6f73;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-reference-rich--compact summary strong {
    display: block;
    grid-column: 1;
    max-width: 820px;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.35rem, 2.7vw, 2.1rem);
    line-height: 1.04;
}

.ie-reference-rich--compact .ie-reference-rich__item > div {
    display: grid;
    gap: 0.85rem;
    border-top: 1px solid rgba(16, 36, 42, 0.09);
    padding: 0 1.15rem 1.15rem;
}

.ie-reference-rich--compact .ie-reference-rich__item p {
    max-width: 850px;
    margin: 0;
    color: #486168;
    line-height: 1.65;
}

.ie-reference-rich__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.ie-quality-map {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    gap: clamp(1.2rem, 3vw, 2rem);
    margin: 0 auto;
    padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.ie-quality-map__head {
    display: grid;
    max-width: 840px;
    gap: 0.75rem;
}

.ie-quality-map__head h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 0.96;
}

.ie-quality-map__head p:not(.ie-eyebrow) {
    margin: 0;
    color: #486168;
    font-size: 1.06rem;
    line-height: 1.65;
}

.ie-quality-map__body {
    display: grid;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
}

.ie-quality-map__visual {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(123, 211, 213, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(150deg, rgba(9, 33, 39, 0.96), rgba(18, 84, 89, 0.9)),
        #10242a;
    box-shadow: 0 24px 60px rgba(9, 31, 35, 0.18);
}

.ie-quality-map__image-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}

.ie-quality-map__image-grid figure,
.ie-comparison-card__images figure {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 0;
    margin: 0;
    border: 1px solid rgba(16, 36, 42, 0.12);
    border-radius: 8px;
    background: #10242a;
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.08);
}

.ie-quality-map__image-grid .ie-image-slot,
.ie-quality-map__image-grid img {
    height: 100%;
}

.ie-quality-map__image-grid img {
    min-height: 11.8rem;
}

.ie-quality-map__image-grid figcaption,
.ie-comparison-card__images figcaption {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    display: grid;
    gap: 0.1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(7, 31, 36, 0.78);
    padding: 0.55rem 0.65rem;
    color: #fff;
    backdrop-filter: blur(10px);
}

.ie-quality-map__image-grid figcaption span {
    color: #8ee2e5;
    font-size: 0.64rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-quality-map__image-grid figcaption strong {
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.12;
}

.ie-quality-map__visual::before {
    content: "";
    position: absolute;
    inset: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.ie-quality-map__roof {
    position: absolute;
    inset: 3.4rem 2.2rem auto 2.2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
    padding: 1.2rem;
    transform: skewY(-8deg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(73, 183, 189, 0.24), rgba(255, 255, 255, 0.08));
}

.ie-quality-map__roof span {
    min-height: 5.5rem;
    border: 1px solid rgba(123, 211, 213, 0.58);
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(123, 211, 213, 0.26), rgba(123, 211, 213, 0.08)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 25%);
}

.ie-quality-map__route {
    position: absolute;
    top: 12.6rem;
    left: 50%;
    width: 0.24rem;
    height: 13rem;
    background: linear-gradient(180deg, #7bd3d5, rgba(123, 211, 213, 0.18));
    box-shadow: 0 0 0 6px rgba(123, 211, 213, 0.08);
}

.ie-quality-map__plant {
    position: absolute;
    inset: auto 2.2rem 2.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ie-quality-map__plant span,
.ie-quality-map__plant strong,
.ie-quality-map__plant em {
    display: grid;
    min-height: 5.1rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-style: normal;
    font-weight: 900;
}

.ie-quality-map__plant em {
    grid-column: 1 / -1;
    min-height: 3.6rem;
    background: rgba(123, 211, 213, 0.16);
    color: #d9fbfb;
}

.ie-quality-map__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.ie-quality-map__items article {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    min-height: 100%;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    padding: clamp(1rem, 2vw, 1.25rem);
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.07);
}

.ie-quality-map__items span {
    color: #0f6f73;
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-quality-map__items h3 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.72rem);
    line-height: 1;
}

.ie-quality-map__items p {
    margin: 0;
    color: #486168;
    line-height: 1.62;
}

.ie-comparison-blocks,
.ie-product-cards {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    gap: clamp(1rem, 2.5vw, 1.6rem);
    margin: 0 auto clamp(2.6rem, 5vw, 4.3rem);
}

.ie-comparison-blocks__head,
.ie-product-cards__head {
    display: grid;
    max-width: 860px;
    gap: 0.7rem;
}

.ie-comparison-blocks__head h2,
.ie-product-cards__head h2,
.ie-document-preview h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 0.96;
}

.ie-comparison-blocks__head p:not(.ie-eyebrow),
.ie-product-cards__head p:not(.ie-eyebrow),
.ie-document-preview p:not(.ie-eyebrow) {
    margin: 0;
    color: #486168;
    font-size: 1.04rem;
    line-height: 1.64;
}

.ie-comparison-blocks__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.ie-comparison-card {
    display: grid;
    grid-template-columns: minmax(8rem, 0.42fr) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(50, 88, 89, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.07);
}

.ie-comparison-card__visual {
    position: relative;
    min-height: 14rem;
    background:
        linear-gradient(150deg, rgba(12, 52, 57, 0.96), rgba(73, 183, 189, 0.72)),
        #325859;
}

.ie-comparison-card__visual span {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
}

.ie-comparison-card__visual span:nth-child(1) {
    inset: 1.1rem 1rem auto;
    height: 3.4rem;
    transform: skewY(-8deg);
}

.ie-comparison-card__visual span:nth-child(2) {
    top: 5.5rem;
    left: 50%;
    width: 0.32rem;
    height: 5.5rem;
    background: #d9fbfb;
}

.ie-comparison-card__visual span:nth-child(3) {
    inset: auto 1rem 1rem;
    height: 3.2rem;
}

.ie-comparison-card__images {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    min-height: 100%;
    background: #eaf6f6;
    padding: 0.5rem;
}

.ie-comparison-card__images .ie-image-slot,
.ie-comparison-card__images img {
    height: 100%;
}

.ie-comparison-card__images img,
.ie-comparison-card__images .ie-image-slot--pending {
    min-height: 8.1rem;
}

.ie-comparison-card__images figcaption {
    right: 0.5rem;
    bottom: 0.5rem;
    left: auto;
    min-width: 4.4rem;
    justify-items: center;
    padding: 0.38rem 0.5rem;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-comparison-card__copy {
    display: grid;
    gap: 0.7rem;
    padding: clamp(1rem, 2vw, 1.25rem);
}

.ie-comparison-card__copy > p {
    margin: 0;
    color: #0f6f73;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-comparison-card h3 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1;
}

.ie-comparison-card dl {
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

.ie-comparison-card dl div {
    border-left: 3px solid #6dbbbf;
    padding-left: 0.75rem;
}

.ie-comparison-card dl div:last-child {
    border-left-color: rgba(16, 36, 42, 0.22);
}

.ie-comparison-card dt {
    color: #10242a;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ie-comparison-card dd {
    margin: 0.18rem 0 0;
    color: #486168;
    font-size: 0.94rem;
    line-height: 1.46;
}

.ie-document-preview {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
    margin: 0 auto clamp(2.6rem, 5vw, 4.3rem);
    border: 1px solid rgba(123, 211, 213, 0.24);
    border-radius: 8px;
    background:
        radial-gradient(circle at 100% 0%, rgba(109, 187, 191, 0.2), transparent 34%),
        linear-gradient(135deg, #f7fbfb, #fff);
    padding: clamp(1.15rem, 3vw, 2rem);
    box-shadow: 0 20px 48px rgba(9, 31, 35, 0.07);
}

.ie-document-preview > div:first-child {
    display: grid;
    gap: 0.7rem;
}

.ie-document-preview__stack {
    display: grid;
    gap: 0.75rem;
}

.ie-document-preview__stack article {
    display: grid;
    gap: 0.32rem;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    padding: 1rem;
}

.ie-document-preview__image,
.ie-product-cards__image {
    margin-bottom: 0.35rem;
}

.ie-document-preview__image img,
.ie-document-preview__image.ie-image-slot--pending {
    min-height: 9.8rem;
}

.ie-document-preview__stack span,
.ie-product-cards__grid span {
    color: #0f6f73;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-document-preview__stack strong {
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: 1.45rem;
    line-height: 1;
}

.ie-document-preview__stack p {
    margin: 0;
    color: #486168;
    line-height: 1.52;
}

.ie-product-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.ie-product-cards__grid article {
    display: grid;
    gap: 0.7rem;
    border: 1px solid rgba(50, 88, 89, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(50, 88, 89, 0.96), rgba(15, 111, 115, 0.88)),
        #325859;
    color: #fff;
    padding: clamp(1.15rem, 2.5vw, 1.55rem);
    box-shadow: 0 20px 46px rgba(9, 31, 35, 0.16);
}

.ie-product-cards__grid article:nth-child(2) {
    background:
        linear-gradient(135deg, rgba(15, 111, 115, 0.95), rgba(109, 187, 191, 0.84)),
        #0f6f73;
}

.ie-product-cards__grid article:nth-child(3) {
    background:
        linear-gradient(135deg, rgba(16, 36, 42, 0.95), rgba(50, 88, 89, 0.9)),
        #10242a;
}

.ie-product-cards__image {
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.ie-product-cards__image img,
.ie-product-cards__image.ie-image-slot--pending {
    min-height: 11rem;
}

.ie-product-cards__grid h3 {
    margin: 0;
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 0.95;
}

.ie-product-cards__grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.58;
}

.ie-product-cards__grid strong {
    align-self: end;
    color: #d8fbfb;
    line-height: 1.38;
}

.ie-decision-journey {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.ie-decision-journey__head {
    display: grid;
    max-width: 840px;
    gap: 0.85rem;
    margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.ie-decision-journey__head h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 0.96;
}

.ie-decision-journey__head p:not(.ie-eyebrow) {
    margin: 0;
    color: #486168;
    font-size: 1.06rem;
    line-height: 1.65;
}

.ie-decision-journey__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}

.ie-decision-journey__grid article {
    display: grid;
    gap: 0.75rem;
    min-height: 100%;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 251, 0.98)),
        #fff;
    padding: clamp(1.1rem, 2vw, 1.45rem);
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.07);
}

.ie-decision-journey__grid span {
    color: #1f9194;
    font-weight: 900;
}

.ie-decision-journey__grid h3 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: 1.42rem;
    line-height: 1;
}

.ie-decision-journey__grid p {
    margin: 0;
    color: #486168;
    line-height: 1.58;
}

.ie-decision-journey__grid strong {
    display: block;
    margin-top: auto;
    border-top: 1px solid rgba(16, 36, 42, 0.1);
    padding-top: 0.75rem;
    color: #0f6f73;
    line-height: 1.35;
}

.ie-content-detail__metrics {
    display: grid;
    max-width: 920px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: clamp(1.2rem, 2.4vw, 2rem);
}

.ie-content-detail__metrics div {
    display: grid;
    gap: 0.35rem;
    min-height: 5.6rem;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1rem;
    backdrop-filter: blur(10px);
}

.ie-content-detail__metrics span {
    color: #9ee7e9;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ie-content-detail__metrics strong {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.12;
}

.ie-content-grid-section {
    padding: clamp(2.75rem, 5.8vw, 5rem) 0;
}

.ie-content-grid-section--blog {
    padding-top: clamp(2.4rem, 5vw, 4.1rem);
}

.ie-archive-guidance {
    position: relative;
    z-index: 1;
    padding: clamp(1.4rem, 3vw, 2.25rem) 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 248, 0.96)),
        #f6fbfb;
    border-bottom: 1px solid rgba(16, 36, 42, 0.08);
}

.ie-archive-guidance__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.ie-archive-guidance article {
    display: grid;
    gap: 0.45rem;
    min-height: 9.25rem;
    align-content: start;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 250, 0.98));
    padding: clamp(1rem, 1.8vw, 1.25rem);
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.07);
}

.ie-archive-guidance span {
    color: #1f9194;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-archive-guidance strong {
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    line-height: 1;
}

.ie-archive-guidance p {
    margin: 0;
    color: #526c72;
    font-size: 0.95rem;
    line-height: 1.55;
}

.ie-reference-section {
    padding: clamp(2.4rem, 4.8vw, 4rem) 0;
    background:
        linear-gradient(180deg, rgba(244, 248, 248, 0.96), rgba(238, 247, 247, 0.98)),
        #eef7f7;
}

.ie-reference-section h2 {
    max-width: 720px;
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2.05rem, 3.7vw, 3.45rem);
    line-height: 0.96;
}

.ie-reference-section .ie-eyebrow {
    margin: 0 0 0.8rem;
    color: #1f9194;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-reference-lead {
    max-width: 690px;
    margin: 0.9rem 0 0;
    color: #486168;
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.65;
}

.ie-reference-accordion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.45rem);
    margin-top: clamp(1.25rem, 2.4vw, 1.8rem);
}

.ie-reference-accordion {
    overflow: hidden;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 46px rgba(9, 31, 35, 0.08);
}

.ie-reference-accordion summary {
    display: grid;
    gap: 0.4rem;
    cursor: pointer;
    padding: 1.2rem 1.25rem;
    list-style: none;
}

.ie-reference-accordion summary::-webkit-details-marker {
    display: none;
}

.ie-reference-accordion summary span {
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.ie-reference-accordion summary strong {
    color: #1f9194;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ie-reference-accordion p {
    margin: 0;
    padding: 0 1.25rem 1rem;
    color: #486168;
    line-height: 1.65;
}

.ie-reference-accordion footer {
    display: grid;
    gap: 0.2rem;
    border-top: 1px solid rgba(16, 36, 42, 0.08);
    padding: 1rem 1.25rem 1.2rem;
    background: #f7fbfb;
}

.ie-reference-accordion footer strong {
    color: #10242a;
}

.ie-reference-accordion footer em {
    color: #607b82;
    font-style: normal;
}

.ie-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.8vw, 1.35rem);
}

.ie-content-grid-section--blog .ie-content-card:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
    min-height: clamp(23rem, 34vw, 30rem);
}

.ie-content-grid-section--blog .ie-content-card:first-child .ie-content-card__media {
    min-height: 100%;
    aspect-ratio: auto;
}

.ie-content-grid-section--blog .ie-content-card:first-child .ie-content-card__body {
    justify-content: center;
    padding: clamp(1.65rem, 3vw, 2.25rem);
}

.ie-content-grid-section--blog .ie-content-card:first-child h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.94;
}

.ie-content-grid-section--blog .ie-content-card:first-child p {
    font-size: 1.04rem;
}

.ie-content-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 46px rgba(9, 31, 35, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ie-content-card:hover,
.ie-content-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(73, 183, 189, 0.36);
    box-shadow: 0 26px 58px rgba(9, 31, 35, 0.13);
}

.ie-content-card__media {
    position: relative;
    display: grid;
    min-height: 13rem;
    place-items: end start;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(140deg, rgba(16, 36, 42, 0.98), rgba(31, 113, 116, 0.9)),
        linear-gradient(135deg, #153a40, #4ab8bd);
    color: #fff;
    text-decoration: none;
}

.ie-content-card__media::before {
    content: "";
    position: absolute;
    inset: auto 1.2rem 1.05rem auto;
    width: 7.5rem;
    height: 7.5rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    transform: rotate(-18deg);
}

.ie-content-card__media::after {
    content: "";
    position: absolute;
    inset: 1rem auto auto 1rem;
    width: 4.2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7bd3d5, rgba(255, 255, 255, 0));
}

.ie-content-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.ie-content-card:hover .ie-content-card__media img,
.ie-content-card:focus-within .ie-content-card__media img {
    transform: scale(1.035);
}

.ie-content-card__media--fallback {
    align-content: end;
    gap: 0.85rem;
    padding: clamp(1rem, 1.8vw, 1.35rem);
}

.ie-content-card--guide .ie-content-card__media--fallback {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 2.1rem 2.1rem,
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 2.1rem 2.1rem,
        linear-gradient(140deg, #10242a, #1f6f73);
}

.ie-content-card--case .ie-content-card__media--fallback {
    background:
        radial-gradient(circle at 18% 18%, rgba(123, 211, 213, 0.22), transparent 24%),
        linear-gradient(135deg, rgba(12, 38, 43, 0.98), rgba(19, 93, 91, 0.94));
}

.ie-content-card__media--fallback span,
.ie-content-card__media--fallback strong {
    position: relative;
    z-index: 1;
}

.ie-content-card__media--fallback span {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.35rem 0.75rem;
    color: #b9f3f4;
    font-size: 0.82rem;
    font-weight: 900;
}

.ie-content-card__media--fallback strong {
    display: block;
    max-width: 18ch;
    margin-top: 0.75rem;
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.7rem, 2.25vw, 2.35rem);
    line-height: 0.98;
    text-wrap: balance;
}

.ie-team-avatar {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    margin: 1.35rem 1.35rem 0;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.24), transparent 36%),
        linear-gradient(135deg, #174c50, #43aeb3);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(9, 31, 35, 0.14);
}

.ie-content-card__media--team {
    pointer-events: none;
}

.ie-content-card--team {
    background:
        linear-gradient(180deg, rgba(245, 251, 251, 0.95), #fff 34%),
        #fff;
}

.ie-content-card--team .ie-content-card__body {
    padding-top: 1rem;
}

.ie-content-card--team h2 {
    color: #10242a;
}

.ie-content-card__excerpt--team {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.ie-team-skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.1rem;
}

.ie-team-skill-list span {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    border: 1px solid rgba(15, 111, 115, 0.14);
    border-radius: 999px;
    background: #eef8f8;
    padding: 0.34rem 0.68rem;
    color: #174c50;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.1;
}

.ie-team-avatar span {
    font-family: "League Spartan", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0;
}

.ie-content-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.78rem;
    padding: clamp(1rem, 1.6vw, 1.25rem);
}

.ie-content-card__label {
    margin: 0;
    color: #1f9194;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-content-card h2 {
    margin: 0;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.55rem, 2.1vw, 2.05rem);
    line-height: 0.98;
}

.ie-content-card h2 a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #10242a;
    text-decoration: none;
}

.ie-content-card p {
    margin: 0;
    color: #486168;
    line-height: 1.58;
}

.ie-content-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ie-content-card__metrics {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.05rem;
}

.ie-content-card__story,
.ie-content-card__question {
    display: grid;
    gap: 0.42rem;
    border: 1px solid rgba(16, 36, 42, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(246, 251, 251, 0.98), rgba(255, 255, 255, 0.98)),
        #fff;
    padding: 0.68rem;
}

.ie-content-card__story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.72rem;
}

.ie-content-card__story span {
    display: grid;
    gap: 0.18rem;
    color: #486168;
    font-size: 0.78rem;
    line-height: 1.28;
}

.ie-content-card__story strong,
.ie-content-card__question span {
    color: #0f6f73;
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-content-card__question {
    gap: 0.35rem;
    background:
        linear-gradient(135deg, rgba(16, 36, 42, 0.97), rgba(31, 113, 116, 0.92)),
        #10242a;
}

.ie-content-card__question span {
    color: #6dbbbf;
}

.ie-content-card__question strong {
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    line-height: 1.03;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ie-content-card--case .ie-content-card__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ie-content-card--case .ie-content-card__metrics div:nth-child(3) {
    grid-column: 1 / -1;
}

.ie-content-card__metrics div {
    display: grid;
    gap: 0.18rem;
    border: 1px solid rgba(16, 36, 42, 0.09);
    border-radius: 8px;
    background: #f6fbfb;
    padding: 0.58rem 0.68rem;
}

.ie-content-card__metrics span,
.ie-content-card__meta {
    color: #607b82;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ie-content-card__metrics strong {
    color: #10242a;
    font-weight: 900;
    font-size: 0.92rem;
    line-height: 1.08;
}

.ie-content-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.2rem;
}

.ie-content-card__meta span {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    border-radius: 999px;
    background: #eef7f7;
    padding: 0.35rem 0.7rem;
}

.ie-text-link {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    color: #0f6f73;
    font-weight: 900;
    text-decoration: none;
}

.ie-content-card .ie-text-link {
    border-radius: 6px;
    background: rgba(109, 187, 191, 0.12);
    padding: 0.1rem 0.65rem;
}

.ie-text-link::after {
    content: "";
    width: 1.45rem;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
}

.ie-text-link:hover::after,
.ie-text-link:focus-visible::after {
    transform: translateX(0.25rem);
}

.ie-content-detail {
    background: #f7fbfb;
}

.ie-content-detail__media {
    overflow: hidden;
    margin-top: clamp(2rem, 4vw, 3.5rem);
    border-radius: 8px;
    aspect-ratio: 16 / 8;
    box-shadow: 0 22px 56px rgba(9, 31, 35, 0.12);
}

.ie-content-detail__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ie-guide-compass {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.2rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3.2rem);
}

.ie-guide-compass__copy,
.ie-guide-next {
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 252, 0.98)),
        #fff;
    padding: clamp(1.25rem, 2.6vw, 1.9rem);
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.07);
}

.ie-guide-compass__copy {
    display: grid;
    align-content: center;
    gap: 0.75rem;
}

.ie-guide-compass__copy h2,
.ie-guide-next h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    line-height: 0.98;
}

.ie-guide-compass__copy p:not(.ie-eyebrow),
.ie-guide-next p:not(.ie-eyebrow) {
    margin: 0;
    color: #486168;
    line-height: 1.65;
}

.ie-guide-compass__steps {
    display: grid;
    gap: 0.8rem;
}

.ie-guide-compass__steps article {
    display: grid;
    grid-template-columns: minmax(7rem, 0.42fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    padding: clamp(1rem, 2vw, 1.25rem);
    box-shadow: 0 14px 32px rgba(9, 31, 35, 0.055);
}

.ie-guide-compass__steps strong {
    color: #0f6f73;
    font-weight: 900;
}

.ie-guide-compass__steps p {
    margin: 0;
    color: #486168;
    line-height: 1.55;
}

.ie-case-story {
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
    margin-top: clamp(2rem, 4vw, 3.5rem);
}

.ie-case-story__intro {
    position: sticky;
    top: 7rem;
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 249, 0.96)),
        #fff;
    padding: clamp(1.25rem, 2.8vw, 2rem);
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.07);
}

.ie-case-story__intro h2 {
    margin: 0 0 0.75rem;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 0.98;
}

.ie-case-story__intro p:not(.ie-eyebrow) {
    margin: 0;
    color: #486168;
    line-height: 1.65;
}

.ie-case-story__grid {
    display: grid;
    gap: 0.9rem;
}

.ie-case-story__grid article {
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    padding: clamp(1.1rem, 2.4vw, 1.55rem);
    box-shadow: 0 16px 36px rgba(9, 31, 35, 0.06);
}

.ie-case-story__grid span {
    display: inline-flex;
    margin-bottom: 0.65rem;
    color: #0f6f73;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-case-story__grid h3 {
    margin: 0 0 0.5rem;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.02;
}

.ie-case-story__grid p {
    margin: 0;
    color: #486168;
    font-size: clamp(1rem, 1.18vw, 1.08rem);
    line-height: 1.68;
}

.ie-content-detail__body {
    max-width: 860px;
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
    color: #263d43;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.78;
}

.ie-content-detail__body--lead {
    padding-top: clamp(2rem, 4vw, 3.2rem);
}

.ie-content-detail__body--case-proof {
    padding-top: clamp(1.75rem, 3vw, 2.6rem);
}

.ie-case-story--lead {
    margin-top: clamp(1.6rem, 3.5vw, 3rem);
}

.ie-content-detail__body > * {
    margin-top: 0;
}

.ie-content-detail__body h2,
.ie-content-detail__body h3 {
    margin-top: 1.8em;
    margin-bottom: 0.55em;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    line-height: 1.02;
}

.ie-content-detail__body a {
    color: #0f6f73;
    font-weight: 800;
}

.ie-guide-next {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    margin-top: clamp(1.5rem, 4vw, 2.75rem);
    margin-bottom: clamp(4rem, 8vw, 7rem);
    background:
        linear-gradient(135deg, rgba(16, 36, 42, 0.98), rgba(31, 113, 116, 0.94)),
        #10242a;
    color: #fff;
}

.ie-guide-next h2 {
    color: #fff;
}

.ie-guide-next p:not(.ie-eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
}

.ie-guide-next nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem;
}

.ie-guide-next .ie-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #49b7bd;
    color: #fff;
    padding: 0.72rem 1rem;
    font-weight: 900;
    text-decoration: none;
}

.ie-guide-next .ie-text-link {
    color: #b9f3f4;
}

.ie-contact-page {
    background: #f7fbfb;
}

.ie-contact-grid-section {
    padding: 0 0 clamp(3.5rem, 7vw, 6rem);
}

.ie-contact-grid {
    display: grid;
    grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1rem, 2.4vw, 1.75rem);
}

.ie-contact-panel {
    border: 1px solid rgba(16, 36, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    padding: clamp(1.35rem, 2.4vw, 1.85rem);
    box-shadow: 0 18px 42px rgba(9, 31, 35, 0.07);
}

.ie-contact-panel h2 {
    margin: 0 0 1.2rem;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 0.98;
}

.ie-contact-list {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ie-contact-list li {
    display: grid;
    gap: 0.25rem;
    border-top: 1px solid rgba(16, 36, 42, 0.08);
    padding-top: 1rem;
}

.ie-contact-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.ie-contact-list span {
    color: #1f9194;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-contact-list a,
.ie-contact-list address {
    color: #10242a;
    font-style: normal;
    font-weight: 800;
    line-height: 1.45;
}

@media (max-width: 980px) {
    .ie-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ie-content-grid-section--blog .ie-content-card:first-child {
        grid-column: 1 / -1;
    }

    .ie-archive-guidance__grid {
        grid-template-columns: 1fr;
    }

    .ie-reference-accordion-grid {
        grid-template-columns: 1fr;
    }

    .ie-decision-journey__grid {
        grid-template-columns: 1fr;
    }

    .ie-quality-map__body,
    .ie-quality-map__items,
    .ie-proof-examples__grid,
    .ie-comparison-blocks__grid,
    .ie-document-preview {
        grid-template-columns: 1fr;
    }

    .ie-product-cards__grid {
        grid-template-columns: 1fr;
    }

    .ie-comparison-card {
        grid-template-columns: minmax(7rem, 0.34fr) minmax(0, 1fr);
    }

    .ie-quality-map__visual {
        min-height: 390px;
    }

    .ie-page-hero .ie-shell,
    .ie-reference-lens {
        grid-template-columns: 1fr;
    }

    .ie-reference-page .ie-proof-grid,
    .ie-reference-handoff,
    .ie-reference-image-story__grid,
    .ie-decision-pack {
        grid-template-columns: 1fr;
    }

    .ie-decision-pack__head {
        position: static;
    }

    .ie-reference-visual {
        min-height: 240px;
    }

    .ie-content-detail__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ie-guide-compass,
    .ie-case-story,
    .ie-guide-next {
        grid-template-columns: 1fr;
    }

    .ie-case-story__intro {
        position: static;
    }

    .ie-guide-next nav {
        justify-content: flex-start;
    }

    .ie-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ie-page-hero {
        padding: 4.1rem 0 2.6rem;
    }

    .ie-page-hero--calculator-led {
        padding: 2rem 0 2.4rem;
    }

    .ie-page-hero--calculator-led .ie-shell {
        gap: 1rem;
    }

    .ie-reference-page .ie-page-hero--calculator-led h1 {
        font-size: 2.15rem;
        line-height: 1;
        max-width: none;
    }

    .ie-reference-page .ie-page-hero--calculator-led .ie-page-intro {
        font-size: 0.94rem;
        line-height: 1.45;
        max-width: 23rem;
    }

    .ie-page-hero--calculator-led .ie-shell > div:first-child {
        gap: 0.65rem !important;
    }

    .ie-reference-page .ie-page-hero .ie-shell {
        width: min(100%, calc(100vw - 28px));
    }

    .ie-page-hero .ie-shell,
    .ie-decision-journey,
    .ie-quality-map,
    .ie-reference-rich,
    .ie-reference-handoff,
    .ie-reference-page .ie-proof-grid,
    .ie-proof-examples,
    .ie-comparison-blocks,
    .ie-document-preview,
    .ie-product-cards,
    .ie-reference-lens,
    .ie-decision-pack {
        width: min(calc(100% - 28px), 1120px);
    }

    .ie-page-hero h1 {
        font-size: clamp(2.2rem, 9.5vw, 3rem);
        line-height: 0.96;
    }

    .ie-reference-page .ie-page-hero h1 {
        max-width: 10.6ch;
        font-size: clamp(2.15rem, 9vw, 2.85rem);
        line-height: 0.98;
    }

    .ie-reference-page .ie-page-intro {
        max-width: 21rem;
    }

    .ie-page-intro {
        font-size: 1rem;
        line-height: 1.58;
    }

    .ie-reference-visual {
        min-height: 210px;
        border-radius: 12px;
    }

    .ie-page-hero--image-led .ie-reference-visual {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ie-reference-hero-image {
        min-height: 16rem;
    }

    .ie-reference-image-story {
        width: min(calc(100% - 28px), 1120px);
        margin-top: 1.4rem;
        margin-bottom: 2.3rem;
    }

    .ie-reference-image-story__grid article,
    .ie-reference-image-story__grid article:first-child:nth-last-child(3),
    .ie-reference-image-story__grid article:first-child:nth-last-child(3) ~ article {
        min-height: 21rem;
    }

    .ie-reference-image-story__grid article:first-child:nth-last-child(3) {
        grid-row: auto;
    }

    .ie-reference-lens {
        margin-top: 1rem;
        margin-bottom: 2.3rem;
        gap: 0.75rem;
    }

    .ie-reference-lens article {
        grid-template-columns: 2.8rem minmax(0, 1fr);
        min-height: 0;
        padding: 1rem;
    }

    .ie-reference-page .ie-proof-grid {
        gap: 0.65rem;
        margin-bottom: 1.35rem;
    }

    .ie-reference-page .ie-proof-card {
        padding: 0.82rem 0.9rem;
    }

    .ie-reference-page .ie-proof-card strong {
        font-size: 1.18rem;
    }

    .ie-reference-page .ie-proof-card p {
        font-size: 0.9rem;
        line-height: 1.38;
    }

    .ie-proof-examples,
    .ie-comparison-blocks,
    .ie-document-preview,
    .ie-product-cards {
        gap: 0.85rem;
        margin-bottom: 2rem;
    }

    .ie-proof-examples__head h2,
    .ie-comparison-blocks__head h2,
    .ie-document-preview h2,
    .ie-product-cards__head h2 {
        font-size: clamp(2rem, 8vw, 2.55rem);
    }

    .ie-proof-examples__grid {
        gap: 0.65rem;
    }

    .ie-comparison-card {
        grid-template-columns: 1fr;
    }

    .ie-comparison-card__visual {
        min-height: 10rem;
    }

    .ie-comparison-card__images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .ie-comparison-card__images img,
    .ie-comparison-card__images .ie-image-slot--pending {
        min-height: 9.4rem;
    }

    .ie-document-preview {
        padding: 1rem;
    }

    .ie-decision-pack {
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .ie-decision-pack__head h2 {
        font-size: clamp(2rem, 8vw, 2.55rem);
    }

    .ie-decision-pack__grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .ie-decision-pack__grid article {
        min-height: 0;
        padding: 1rem;
    }

    .ie-reference-handoff {
        gap: 1rem;
        margin-bottom: 2.2rem;
        padding: 1rem;
    }

    .ie-reference-handoff h2 {
        font-size: clamp(2rem, 8vw, 2.55rem);
    }

    .ie-reference-handoff__steps li {
        min-height: 3.25rem;
        padding: 0.65rem 0.72rem;
    }

    .ie-reference-lens span {
        width: 2.55rem;
        height: 2.55rem;
    }

    .ie-reference-rich--compact summary {
        min-height: 64px;
        padding: 0.86rem 0.95rem;
    }

    .ie-reference-rich--compact summary strong {
        font-size: 1.28rem;
    }

    .ie-reference-rich--compact .ie-reference-rich__item > div {
        padding: 0 0.95rem 1rem;
    }

    .ie-quality-map {
        gap: 1rem;
    }

    .ie-quality-map__image-grid {
        gap: 0.65rem;
    }

    .ie-quality-map__image-grid img,
    .ie-quality-map__image-grid .ie-image-slot--pending {
        min-height: 12.2rem;
    }

    .ie-quality-map__visual {
        min-height: 310px;
    }

    .ie-quality-map__roof {
        inset: 2.2rem 1.2rem auto;
        gap: 0.35rem;
        padding: 0.75rem;
    }

    .ie-quality-map__roof span {
        min-height: 3.9rem;
    }

    .ie-quality-map__route {
        top: 8.8rem;
        height: 8rem;
    }

    .ie-quality-map__plant {
        inset: auto 1.2rem 1.2rem;
        gap: 0.55rem;
    }

    .ie-quality-map__plant span,
    .ie-quality-map__plant strong {
        min-height: 3.7rem;
    }

    .ie-reference-section {
        padding: 2.3rem 0 2.65rem;
    }

    .ie-archive-guidance {
        padding: 0.85rem 0;
    }

    .ie-archive-guidance__grid {
        gap: 0.55rem;
    }

    .ie-archive-guidance article {
        grid-template-columns: minmax(4.25rem, auto) 1fr;
        gap: 0.15rem 0.75rem;
        min-height: auto;
        align-items: center;
        padding: 0.82rem 0.95rem;
        box-shadow: 0 10px 24px rgba(9, 31, 35, 0.055);
    }

    .ie-archive-guidance span {
        grid-row: 1 / 3;
        align-self: start;
        padding-top: 0.1rem;
        font-size: 0.7rem;
        letter-spacing: 0.07em;
    }

    .ie-archive-guidance strong {
        font-size: 1.12rem;
        line-height: 1.03;
    }

    .ie-archive-guidance p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 0.9rem;
        line-height: 1.38;
    }

    .ie-content-grid {
        grid-template-columns: 1fr;
    }

    .ie-guide-compass__steps article {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .ie-guide-next nav {
        display: grid;
    }

    .ie-content-grid-section--blog .ie-content-card:first-child {
        display: flex;
        min-height: 0;
    }

    .ie-content-grid-section--blog .ie-content-card:first-child .ie-content-card__media {
        min-height: 10.5rem;
        aspect-ratio: 16 / 10;
    }

    .ie-content-grid-section--blog .ie-content-card:first-child h2 {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }

    .ie-content-card__media {
        min-height: 9.8rem;
    }

    .ie-content-card__body {
        gap: 0.68rem;
        padding: 0.95rem;
    }

    .ie-content-card__story {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .ie-content-card__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ie-content-card--case .ie-content-card__metrics div:nth-child(3) {
        grid-column: 1 / -1;
    }

    .ie-content-card__question {
        padding: 0.62rem;
    }

    .ie-reference-section h2 {
        font-size: clamp(2rem, 10vw, 2.55rem);
        line-height: 1;
    }

    .ie-reference-lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .ie-reference-accordion-grid {
        margin-top: 1.25rem;
    }

    .ie-reference-accordion summary {
        padding: 1rem;
    }

    .ie-reference-accordion p,
    .ie-reference-accordion footer {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .ie-content-detail__metrics {
        grid-template-columns: 1fr;
    }
}

.ier-detail-grid,
.ier-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 2rem;
    align-items: start;
}

.ier-detail-copy,
.ier-detail-sidebar,
.ier-article-toc {
    display: grid;
    gap: 1.25rem;
}

.ier-article-featured {
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.ier-article-featured img {
    border-radius: 2rem;
    box-shadow: 0 24px 60px rgba(9, 31, 35, 0.16);
}

.ier-article-toc {
    padding: 1.2rem;
    border: 1px solid var(--ier-border);
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 18px 44px rgba(9, 31, 35, 0.06);
    position: sticky;
    top: 1.5rem;
}

.ier-article-toc ol {
    margin: 0;
    padding-left: 1.2rem;
}

.ier-article-toc a {
    color: var(--ier-ink);
    text-decoration: none;
}

.ier-before-after,
.ier-faq-block {
    display: grid;
    gap: 1rem;
}

.ier-before-after__grid {
    display: grid;
    gap: 1rem;
}

.ier-before-after figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--ier-border);
    border-radius: 1.25rem;
    background: #fff;
}

.ier-before-after figure span {
    display: block;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ier-teal-dark);
}

.ier-pagination {
    margin-top: 2rem;
}

.ier-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    margin-right: 0.5rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--ier-border);
    background: #fff;
    color: var(--ier-ink);
    text-decoration: none;
}

.ier-pagination .current {
    background: var(--ier-teal);
    color: #fff;
    border-color: transparent;
}

@media (max-width: 900px) {
    .ier-card-grid,
    .ier-logo-strip,
    .ier-people-grid,
    .ier-article-grid,
    .ier-case-grid,
    .ier-split-hero,
    .ier-detail-grid,
    .ier-article-layout,
    .ier-topbar .ier-container,
    .ier-navbar .ier-container,
    .ier-site-footer .ier-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .ier-actions {
        flex-direction: column;
    }

    .ier-hero {
        padding-top: 3.75rem;
    }

    .ier-article-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .ier-article-toc {
        position: static;
    }
}

/* Go parity shell */
.ier-site-header,
.ier-site-header * {
    box-sizing: border-box;
}

.ier-site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #fff;
    box-shadow: 0 18px 50px -42px rgba(15, 31, 36, 0.68);
}

.admin-bar .ier-site-header {
    top: 32px;
}

.ier-site-header::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #325859, #629fa6, #6dbbbf);
}

.ier-topbar {
    min-height: 46px;
    background: linear-gradient(90deg, #07383d, #0b5f61);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #2cb5ba, #f6b938, #6dbbbf, #2cb5ba) 1;
    color: rgba(255, 255, 255, 0.94);
}

.ier-topbar .ier-container {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
}

.ier-topbar-contact,
.ier-topbar-links {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.6rem);
}

.ier-topbar-contact a,
.ier-topbar-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #fff;
    font-size: 0.94rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.ie-contact-list a,
.ie-content-detail__body a,
.ier-article-toc a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.ier-topbar-seai {
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.25rem 0.75rem 0.25rem 0.35rem;
    box-shadow: inset 0 0 0 1px rgba(123, 211, 213, 0.16);
    transition: transform 180ms ease, background-color 180ms ease;
}

.ier-topbar-seai img {
    width: 52px;
    height: 24px;
    object-fit: contain;
    border-radius: 999px;
    background: #fff;
    padding: 0.18rem;
}

.ier-navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(13, 92, 95, 0.1);
    color: var(--ier-ink);
}

.ier-navbar .ier-container {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2.4vw, 2rem);
    padding: 0;
}

.ier-brand {
    display: inline-flex;
    min-width: 124px;
    align-items: center;
}

.ier-brand picture {
    display: block;
}

.ier-brand img {
    display: block;
    width: 210px;
    max-width: 100%;
    max-height: 64px;
    height: auto;
    object-fit: contain;
}

.ie-nav-toggle {
    display: none;
}

.ie-submenu-toggle {
    display: none;
}

.ier-nav {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
}

.ier-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.3vw, 1.25rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.ier-nav li {
    position: relative;
}

.ier-nav li:has(> .sub-menu)::after,
.ier-nav li.has-dropdown::after,
.ier-nav li.menu-item-has-children::after {
    content: "";
    position: absolute;
    right: -0.75rem;
    bottom: -0.8rem;
    left: -0.75rem;
    height: 1.05rem;
}

.ier-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-radius: 999px;
    padding: 0 0.2rem;
    color: #12252b;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.ier-nav .sub-menu {
    position: absolute;
    top: calc(100% + 0.12rem);
    left: 50%;
    z-index: 30;
    display: grid;
    min-width: 310px;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid rgba(13, 92, 95, 0.12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 22px 56px -34px rgba(13, 92, 95, 0.72);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.ier-nav li:hover > .sub-menu,
.ier-nav li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.ier-nav .sub-menu li {
    width: 100%;
}

.ier-nav .sub-menu a {
    display: grid;
    min-height: 0;
    gap: 0.24rem;
    padding: 0.72rem 0.8rem;
    border-radius: 8px;
    color: #12252b;
    line-height: 1.2;
    white-space: normal;
}

.ier-nav .sub-menu a:hover,
.ier-nav .sub-menu a:focus-visible {
    background: #f0f8f8;
}

.ier-nav .sub-menu a::after {
    display: none;
}

.ier-nav .sub-menu strong {
    color: #0d5c5f;
    font-size: 0.95rem;
}

.ier-nav .sub-menu span {
    color: #536b70;
    font-size: 0.82rem;
    font-weight: 650;
}

.ier-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.35rem;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: #2cb5ba;
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 160ms ease, transform 160ms ease;
}

.ier-nav a:hover::after,
.ier-nav a:focus-visible::after,
.ier-nav .current-menu-item > a::after {
    opacity: 1;
    transform: scaleX(1);
}

.ier-navbar .ier-button {
    flex: 0 0 auto;
    min-height: 50px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2cb5ba, #0d5c5f);
    box-shadow: 0 20px 36px -24px rgba(13, 92, 95, 0.9);
    padding-inline: 1.35rem;
}

@media (max-width: 1180px) {
    .ier-topbar {
        display: none;
    }

    .ier-site-header {
        background: rgba(15, 47, 53, 0.96);
        box-shadow: 0 14px 34px rgba(7, 23, 28, 0.18);
        backdrop-filter: blur(16px);
    }

    .ier-navbar {
        background: transparent;
    }

    .ier-navbar .ier-container {
        min-height: 82px;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
        display: flex;
        gap: 0.8rem;
        padding-inline: 0;
    }

    .ier-brand {
        order: 1;
        max-width: 170px;
        flex: 0 0 auto;
    }

    .ier-navbar .ier-button {
        display: none;
    }

    .ier-mobile-cta {
        order: 2;
        display: inline-grid;
        min-height: 52px;
        min-width: 126px;
        align-content: center;
        justify-items: start;
        gap: 0.12rem;
        margin-inline-end: auto;
        border: 1px solid rgba(136, 229, 232, 0.42);
        border-radius: 12px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
            linear-gradient(135deg, rgba(31, 145, 148, 0.98), rgba(15, 95, 99, 0.98));
        box-shadow:
            0 12px 26px -18px rgba(38, 206, 210, 0.7),
            inset 0 1px 0 rgba(255, 255, 255, 0.18);
        color: #fff;
        text-align: left;
        text-decoration: none;
        padding: 0.62rem 1.85rem 0.58rem 0.82rem;
        position: relative;
        overflow: hidden;
    }

    .ier-mobile-cta::after {
        content: "";
        position: absolute;
        right: 0.72rem;
        top: 50%;
        width: 0.42rem;
        height: 0.42rem;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        opacity: 0.92;
        transform: translateY(-50%) rotate(45deg);
    }

    .ier-mobile-cta span,
    .ier-mobile-cta strong {
        display: block;
        line-height: 1;
    }

    .ier-mobile-cta span {
        font-size: 0.58rem;
        font-weight: 850;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.72;
    }

    .ier-mobile-cta strong {
        font-size: 0.9rem;
        font-weight: 950;
    }

    .ie-nav-toggle {
        order: 3;
        display: inline-grid;
        width: 50px;
        height: 50px;
        flex: 0 0 auto;
        position: relative;
        place-items: center;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.34);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 0 0 1px rgba(136, 229, 232, 0.14);
        padding: 0;
    }

    .ie-nav-toggle span {
        position: absolute;
        left: 13px;
        display: block;
        width: 23px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .ie-nav-toggle span:nth-child(1) {
        top: 16px;
    }

    .ie-nav-toggle span:nth-child(2) {
        top: 24px;
    }

    .ie-nav-toggle span:nth-child(3) {
        top: 32px;
    }

    .ier-site-header.is-nav-open .ie-nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .ier-site-header.is-nav-open .ie-nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .ier-site-header.is-nav-open .ie-nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .ier-nav {
        position: absolute;
        top: 100%;
        right: max(0.75rem, env(safe-area-inset-right));
        left: max(0.75rem, env(safe-area-inset-left));
        z-index: 50;
        display: none;
        max-height: min(74vh, 640px);
        overflow: auto;
        padding: 0.65rem;
        border: 1px solid rgba(136, 229, 232, 0.26);
        border-radius: 22px;
        background: #fff;
        box-shadow: 0 28px 80px -38px rgba(7, 23, 28, 0.72);
        backdrop-filter: blur(18px);
    }

    .ier-site-header.is-nav-open .ier-nav {
        display: block;
    }

    .ier-nav ul {
        display: grid;
        align-items: stretch;
        justify-content: stretch;
        gap: 0.35rem;
    }

    .ier-nav li {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .ier-nav li:has(> .sub-menu)::after,
    .ier-nav li.has-dropdown::after,
    .ier-nav li.menu-item-has-children::after {
        display: none;
    }

    .ier-nav a {
        display: flex;
        min-height: 50px;
        align-items: center;
        justify-content: space-between;
        padding: 0.72rem 0.9rem;
        border-radius: 14px;
        color: #12252b;
        font-weight: 850;
        white-space: normal;
    }

    .ier-nav a:hover,
    .ier-nav a:focus-visible {
        background: #edf7f7;
    }

    .ier-nav a::after {
        display: none;
    }

    .ie-submenu-toggle {
        display: grid;
        width: 30px;
        height: 30px;
        place-items: center;
        border: 0;
        border-radius: 8px;
        background: #e9f6f6;
        padding: 0;
    }

    .ie-submenu-toggle span {
        width: 10px;
        height: 10px;
        border-right: 2px solid #0f6f73;
        border-bottom: 2px solid #0f6f73;
        transform: rotate(45deg) translate(-2px, -2px);
        transition: transform 160ms ease;
    }

    .ier-nav li.is-submenu-open > .ie-submenu-toggle span {
        transform: rotate(225deg) translate(-1px, -1px);
    }

    .ier-nav li > a {
        grid-column: 1;
    }

    .ier-nav li > .ie-submenu-toggle {
        grid-column: 2;
        grid-row: 1;
    }

    .ier-nav .sub-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        position: static;
        display: none;
        grid-column: 1 / -1;
        min-width: 0;
        width: 100%;
        margin: 0.2rem 0 0.7rem;
        padding: 0.35rem;
        border: 0;
        border-radius: 16px;
        background: #f4fbfb;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none !important;
    }

    .ier-nav li.is-submenu-open > .sub-menu {
        display: grid;
    }

    .ier-nav li:hover > .sub-menu,
    .ier-nav li:focus-within > .sub-menu {
        display: none;
    }

    .ier-nav li.is-submenu-open:hover > .sub-menu,
    .ier-nav li.is-submenu-open:focus-within > .sub-menu {
        display: grid;
    }

    .ier-nav .sub-menu li {
        display: block;
    }

    .ier-nav .sub-menu a {
        display: grid;
        width: 100%;
        justify-content: stretch;
        gap: 0.2rem;
        padding: 0.72rem 0.75rem;
    }

    .ier-nav .sub-menu strong,
    .ier-nav .sub-menu span {
        display: block;
        max-width: 100%;
    }

    .ier-brand img {
        width: 150px;
        max-height: 50px;
        max-width: 150px;
        max-height: 64px;
    }
}

@media (max-width: 980px) {
    .ier-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 4rem;
    }

    .ier-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .ier-site-header {
        position: sticky;
        top: 0;
    }

    .ie-back-to-top {
        right: max(0.9rem, env(safe-area-inset-right));
        bottom: calc(1rem + env(safe-area-inset-bottom));
        width: 2.8rem;
        height: 2.8rem;
    }

    .ier-navbar .ier-container {
        width: min(100% - 1.35rem, 1180px);
        min-height: 66px;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.52rem;
        padding-inline: 0 !important;
    }

    .ier-brand {
        order: 1;
        min-width: 0;
    }

    .ier-brand img {
        width: 112px;
        max-height: 50px;
    }

    .ie-nav-toggle {
        order: 3;
        width: 48px;
        height: 48px;
    }

    .ier-mobile-cta {
        order: 2;
        min-width: 122px;
        min-height: 48px;
    }

    .ier-nav {
        right: 0.75rem;
        left: 0.75rem;
        max-height: calc(100vh - 92px);
        border-radius: 12px;
    }

    .ier-footer-accent {
        height: 18px;
    }

    .ier-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        padding: 3.25rem 0 2.2rem;
    }

    .ier-footer-social a {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .ier-footer-bottom {
        display: grid;
    }
}

@media (max-width: 760px) {
    body {
        overflow-x: hidden;
    }

    .ie-reference-hero-walkthrough .iece-card {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 1rem;
    }

    .ie-reference-hero-walkthrough .iece-card__copy {
        order: 1;
        align-content: start;
    }

    .ie-reference-hero-walkthrough .iece-card__media {
        order: 2;
        min-height: 18rem;
    }

    .ie-reference-hero-walkthrough .iece-card__media img {
        min-height: 18rem;
        object-fit: contain;
    }

    .ier-site-header {
        position: sticky;
        top: 0;
    }

    .admin-bar .ier-site-header {
        top: 0;
    }

    .ier-navbar {
        min-height: 82px;
    }

    .ier-navbar .ier-container {
        display: flex !important;
        width: min(100% - 1.7rem, 1180px);
        min-height: 82px !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.38rem !important;
        padding-inline: 0 !important;
        padding: 0 !important;
    }

    .ier-brand {
        order: 1;
        display: inline-flex;
        width: clamp(128px, 37vw, 146px);
        height: 74px;
        min-width: 0;
        flex: 0 0 auto;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
    }

    .ier-brand img {
        display: block !important;
        width: clamp(148px, 43vw, 168px) !important;
        max-width: clamp(148px, 43vw, 168px) !important;
        height: auto !important;
        max-height: 62px !important;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .ier-mobile-cta {
        order: 2;
        min-width: 116px;
        min-height: 48px;
        margin-inline-end: 0;
        padding: 0.58rem 1.55rem 0.54rem 0.72rem;
    }

    .ier-mobile-cta strong {
        font-size: 0.84rem;
    }

    .ie-nav-toggle {
        order: 3;
        display: inline-grid !important;
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
        position: relative;
        gap: 0;
        border-color: rgba(255, 255, 255, 0.34);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 0 0 1px rgba(123, 211, 213, 0.12);
    }

    .ie-nav-toggle span {
        position: absolute;
        left: 12px;
        width: 20px;
        height: 2px;
        background: #fff;
    }

    .ie-nav-toggle span:nth-child(1) {
        top: 14px;
    }

    .ie-nav-toggle span:nth-child(2) {
        top: 22px;
    }

    .ie-nav-toggle span:nth-child(3) {
        top: 30px;
    }

    .ier-site-header.is-nav-open .ie-nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .ier-site-header.is-nav-open .ie-nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .ier-site-header.is-nav-open .ie-nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .ier-nav {
        right: max(0.65rem, env(safe-area-inset-right));
        left: max(0.65rem, env(safe-area-inset-left));
        max-height: calc(100vh - 92px);
        border-radius: 20px;
    }

    .ie-page-hero {
        padding: 2.45rem 0 2.2rem;
    }

    .ie-page-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.25rem);
        line-height: 0.98;
    }

    .ie-page-intro {
        font-size: 1rem;
        line-height: 1.55;
    }

    .ie-content-grid-section {
        padding: 2.25rem 0 3rem;
    }

    .ie-content-card__body {
        gap: 0.85rem;
        padding: 1.1rem;
    }

    .ie-content-card h2 {
        font-size: clamp(1.45rem, 7vw, 1.9rem);
        line-height: 1.02;
    }

    .ie-content-card--case h2 {
        font-size: clamp(1.32rem, 6.3vw, 1.62rem);
        line-height: 1.03;
    }

    .ie-content-card p {
        line-height: 1.5;
    }

    .ie-content-card__metrics {
        gap: 0.55rem;
    }

    .ie-content-card--case .ie-content-card__metrics {
        grid-template-columns: 1fr;
    }

    .ie-content-card--case .ie-content-card__metrics div:nth-child(3) {
        grid-column: auto;
    }

    .ie-content-card__metrics div {
        padding: 0.7rem 0.8rem;
    }

    .ie-content-card--team {
        background:
            linear-gradient(135deg, rgba(245, 251, 251, 0.96), #fff 42%),
            #fff;
    }

    .ie-team-avatar {
        width: 78px;
        height: 78px;
        margin: 1rem 1.1rem 0;
    }

    .ie-team-avatar span {
        font-size: 1.65rem;
    }

    .ie-content-card--team .ie-content-card__body {
        padding-top: 0.85rem;
    }
}

@media (max-width: 720px) {
    .ier-site-header.is-nav-open {
        z-index: 10020;
    }

    body:has(.ieme-consent:not([hidden])) .ie-reference-page .ie-page-hero {
        padding-top: 7.65rem;
    }
}

@media (max-width: 640px) {
    .ie-reference-page .ie-page-hero h1 {
        max-width: 13.5ch;
        font-size: clamp(2rem, 8.2vw, 2.62rem);
        line-height: 0.99;
    }

    .ie-reference-page .ie-page-hero {
        padding-bottom: 1.65rem;
    }

    .ie-reference-page .ie-page-hero .ie-shell {
        gap: 1.15rem;
    }

    .ie-reference-page .ie-page-hero__actions {
        margin-top: 0.1rem;
    }

    .ie-reference-page .ie-reference-hero-image {
        min-height: clamp(12.5rem, 48vw, 15rem);
    }

    .ie-reference-page .ie-reference-hero-image .ie-image-slot {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .ie-reference-page .ie-reference-hero-image img {
        min-height: 0;
    }
}

@media (max-width: 340px) {
    .ier-navbar .ier-container {
        width: min(100% - 1rem, 1180px);
        gap: 0.34rem !important;
        padding-inline: 0 !important;
    }

    .ier-brand {
        order: 1;
        width: 120px;
        height: 58px;
    }

    .ier-brand img {
        width: 118px !important;
        max-width: 118px !important;
        height: auto !important;
        max-height: 56px !important;
    }

    .ier-mobile-cta {
        order: 2;
        min-width: 104px;
        min-height: 44px;
        padding: 0.5rem 1.4rem 0.48rem 0.62rem;
    }

    .ier-mobile-cta span {
        font-size: 0.6rem;
    }

    .ier-mobile-cta strong {
        font-size: 0.82rem;
    }

    .ier-mobile-cta::after {
        right: 0.65rem;
    }

    .ie-nav-toggle {
        order: 3;
        width: 44px !important;
        height: 44px !important;
    }
}

body.ie-nav-lock {
    overflow: hidden;
    touch-action: none;
}

.ie-solar-hub-page {
    background: #f4f8f8;
    overflow-x: hidden;
}

.ie-solar-hub-page .ie-wrap {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.ie-solar-hub-page .ie-band {
    padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.ie-solar-hub-page .ie-section-kicker {
    margin: 0 0 0.6rem;
    color: #0f6f73;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-solar-hub-page .ie-section-heading {
    max-width: 780px;
    margin: 0;
}

.ie-solar-hub-page .ie-section-heading h2 {
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.65rem, 2.8vw, 2.75rem);
    line-height: 1.02;
}

.ie-solar-hub-page .ie-section-heading p:not(.ie-eyebrow) {
    max-width: 720px;
    color: #425956;
    font-size: 1.02rem;
    line-height: 1.62;
}

.ie-solar-hub-page .ie-section-lede {
    max-width: 760px;
    margin: 1rem 0 0;
    color: #425956;
    font-size: 1.08rem;
    line-height: 1.7;
}

.ie-solar-hub-page .ie-button {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.15rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.ie-solar-hub-page .ie-button--primary {
    background: #18a7a6;
    color: #fff;
}

.ie-solar-hub-page .ie-button--secondary,
.ie-solar-hub-page .ie-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.ie-solar-hub-hero {
    isolation: isolate;
    min-height: clamp(360px, 42vw, 520px);
    display: grid;
    align-items: center;
}

.ie-solar-hub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 78% 24%, rgba(109, 187, 191, 0.2), transparent 28%),
        linear-gradient(90deg, rgba(8, 28, 34, 0.97) 0%, rgba(12, 44, 50, 0.86) 48%, rgba(12, 44, 50, 0.46) 100%);
}

.ie-solar-hub-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.ie-solar-hub-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ie-solar-hub-hero .ie-shell {
    width: min(1180px, calc(100vw - 2rem));
    display: block;
}

.ie-solar-hub-hero .ie-page-hero__actions {
    margin-top: 1.25rem;
}

.ie-solar-hub-hero h1 {
    max-width: 15ch;
    font-size: clamp(2.45rem, 5vw, 4.1rem);
    line-height: 0.96;
}

.ie-solar-hub-hero h1,
.ie-solar-hub-hero p {
    overflow-wrap: break-word;
}

.ie-solar-hub-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.ie-solar-hub-proof-row span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    border: 1px solid rgba(214, 255, 255, 0.24);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: #e9ffff;
    font-size: 0.84rem;
    font-weight: 850;
}

.ie-solar-hub-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
    margin-top: 1.8rem;
}

.ie-solar-hub-path-card {
    display: grid;
    gap: 1rem;
    align-content: start;
    border: 1px solid rgba(16, 32, 31, 0.1);
    border-radius: 8px;
    padding: clamp(1.1rem, 2.2vw, 1.6rem);
    background: #fff;
    box-shadow: 0 18px 42px rgba(9, 40, 35, 0.07);
}

.ie-solar-hub-path-card span {
    color: #0f6f73;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ie-solar-hub-path-card h3 {
    margin-top: 0.55rem;
    color: #10242a;
    font-size: clamp(1.3rem, 1.9vw, 1.75rem);
    line-height: 1.04;
}

.ie-solar-hub-path-card ul {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding-left: 1.1rem;
    color: #4d615d;
}

.ie-solar-hub-path-card a {
    display: inline-flex;
    width: fit-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: #e2f6f5;
    color: #0b6668;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
}

.ie-solar-hub-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
    margin-top: 1.8rem;
}

.ie-solar-hub-topic {
    overflow: hidden;
    display: grid;
    min-height: 100%;
    border: 1px solid rgba(16, 32, 31, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(9, 40, 35, 0.08);
}

.ie-solar-hub-topic img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ie-solar-hub-topic div {
    display: grid;
    align-content: center;
    padding: clamp(1rem, 2.4vw, 1.6rem);
}

.ie-solar-hub-topic span {
    color: #0f6f73;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ie-solar-hub-topic h3 {
    margin-top: 0.55rem;
    color: #10242a;
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    line-height: 1.08;
}

.ie-solar-hub-topic p {
    color: #4d615d;
}

.ie-solar-hub-topic a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    color: #0f6f73;
    font-weight: 950;
    text-underline-offset: 0.18em;
}

.ie-solar-hub-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.ie-solar-hub-support-card {
    display: grid;
    gap: 0.65rem;
    border: 1px solid rgba(16, 32, 31, 0.1);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f6fbfb);
    padding: clamp(1rem, 2vw, 1.25rem);
}

.ie-solar-hub-support-card span {
    color: #0f6f73;
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ie-solar-hub-support-card p {
    margin: 0;
    color: #425956;
    line-height: 1.55;
}

.ie-solar-hub-support-card a {
    color: #0f6f73;
    font-weight: 950;
    text-underline-offset: 0.18em;
}

.ie-solar-hub-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
}

.ie-solar-hub-faqs summary {
    min-height: 44px;
    cursor: pointer;
    padding: 0.75rem 0;
}

.ie-case-archive-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.ie-case-archive-hero__actions .ie-button,
.ie-case-archive-hero__actions .ie-text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.05rem;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.ie-case-archive-hero__actions .ie-button {
    background: #18a7a6;
    color: #fff;
    box-shadow: 0 16px 34px rgba(8, 92, 94, 0.22);
}

.ie-case-archive-hero__actions .ie-text-link {
    border: 1px solid rgba(109, 187, 191, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #d6ffff;
}

.ie-case-above-fold {
    display: grid;
    gap: 0.8rem;
}

.ie-case-above-fold__item {
    display: grid;
    gap: 0.28rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(123, 211, 213, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: inherit;
    text-decoration: none;
}

.ie-case-above-fold__item span {
    color: #7bd3d5;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ie-case-above-fold__item strong {
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    line-height: 1;
}

.ie-case-above-fold__item em {
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .ie-solar-hub-path-grid,
    .ie-solar-hub-topic-grid,
    .ie-solar-hub-support-grid,
    .ie-solar-hub-faq-layout {
        grid-template-columns: 1fr;
    }

    .ie-solar-hub-topic {
        grid-template-columns: 1fr;
    }

    .ie-solar-hub-topic img {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .ie-case-archive-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ie-case-archive-hero__actions .ie-button,
    .ie-case-archive-hero__actions .ie-text-link {
        width: 100%;
    }

    .ie-case-above-fold {
        margin-top: 1.25rem;
    }
}

@media (max-width: 640px) {
    .ie-case-above-fold__item {
        padding: 0.82rem 0.9rem;
    }

    .ie-case-above-fold__item strong {
        font-size: 1.06rem;
    }

    .ie-case-above-fold__item em {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .ie-solar-hub-hero .ie-shell {
        width: min(100%, calc(100vw - 1.5rem));
    }

    .ie-solar-hub-hero p {
        max-width: 20rem;
    }

    .ie-solar-hub-hero .ie-page-hero__actions {
        align-items: stretch;
        flex-direction: column;
        max-width: min(100%, 22rem);
    }

    .ie-solar-hub-hero .ie-button {
        width: 100%;
    }

    .ie-solar-hub-proof-row {
        gap: 0.5rem;
    }

    .ie-solar-hub-proof-row span {
        width: 100%;
        justify-content: center;
    }
}

.ie-mobile-drawer[hidden] {
    display: none !important;
}

@media (min-width: 1181px) {
    .ie-mobile-drawer {
        display: none !important;
    }
}

@media (max-width: 1180px) {
    .ier-navbar .ier-container {
        min-height: 72px !important;
    }

    .ier-mobile-cta:focus-visible,
    .ie-nav-toggle:focus-visible,
    .ie-mobile-drawer a:focus-visible {
        outline: 3px solid rgba(109, 187, 191, 0.95);
        outline-offset: 3px;
    }

    .ier-site-header.is-nav-open .ier-nav {
        display: none !important;
    }

    .ie-mobile-drawer {
        position: fixed;
        z-index: 999;
        top: var(--ie-mobile-drawer-top, 72px);
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        height: calc(100vh - var(--ie-mobile-drawer-top, 72px));
        overflow-y: auto;
        overscroll-behavior: contain;
        padding:
            max(0.88rem, env(safe-area-inset-top))
            max(1rem, env(safe-area-inset-right))
            calc(1.15rem + env(safe-area-inset-bottom))
            max(1rem, env(safe-area-inset-left));
        border-top: 1px solid rgba(109, 187, 191, 0.4);
        background:
            linear-gradient(180deg, rgba(50, 88, 89, 0.98), rgba(18, 43, 47, 0.98)),
            #325859;
        box-shadow: 0 26px 70px rgba(6, 22, 26, 0.34);
        backdrop-filter: blur(18px);
    }

    .ie-mobile-drawer__inner {
        display: grid;
        width: min(100%, 720px);
        margin: 0 auto;
        gap: 0.7rem;
    }

    .ie-mobile-drawer__eyebrow {
        margin: 0.1rem 0 0.2rem;
        color: #8ee2e5;
        font-size: 0.74rem;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .ie-mobile-drawer__list {
        display: grid;
        gap: 0.35rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .ie-mobile-drawer__list a,
    .ie-mobile-drawer__cta {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: space-between;
        border-radius: 10px;
        text-decoration: none;
    }

    .ie-mobile-drawer__list a {
        position: relative;
        padding: 0.72rem 2.15rem 0.72rem 0.88rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        font-size: 1rem;
        font-weight: 850;
        line-height: 1.12;
    }

    .ie-mobile-drawer__list a::after {
        content: "";
        position: absolute;
        right: 0.95rem;
        width: 0.42rem;
        height: 0.42rem;
        border-top: 2px solid #6dbbbf;
        border-right: 2px solid #6dbbbf;
        transform: rotate(45deg);
    }

    .ie-mobile-drawer__list a:hover,
    .ie-mobile-drawer__list a:focus-visible {
        background: rgba(109, 187, 191, 0.16);
        border-color: rgba(109, 187, 191, 0.42);
    }

    .ie-mobile-drawer__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        padding-top: 0.35rem;
    }

    .ie-mobile-drawer__cta {
        justify-content: center;
        padding: 0.78rem 0.85rem;
        font-weight: 950;
        line-height: 1.08;
        text-align: center;
    }

    .ie-mobile-drawer__cta--primary {
        background: linear-gradient(135deg, #6dbbbf, #3f999f);
        color: #092b31;
        box-shadow: 0 16px 34px -24px rgba(109, 187, 191, 0.9);
    }

    .ie-mobile-drawer__cta--secondary {
        border: 1px solid rgba(109, 187, 191, 0.55);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }
}

@media (max-width: 760px) {
    .ier-navbar {
        min-height: 72px !important;
    }

    .ier-navbar .ier-container {
        width: min(100% - 1.15rem, 1180px);
        min-height: 72px !important;
        gap: 0.44rem !important;
        padding-inline: 0 !important;
    }

    .ier-brand {
        width: 156px;
        height: 62px;
    }

    .ier-brand img {
        width: 156px !important;
        max-width: 156px !important;
        max-height: 62px !important;
    }

    .ier-mobile-cta {
        order: 2;
        min-width: 128px;
        min-height: 50px;
        border-radius: 12px;
        border-color: rgba(109, 187, 191, 0.54);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
            linear-gradient(135deg, #6dbbbf, #629fa6 52%, #325859);
    }
}

@media (max-width: 340px) {
    .ier-navbar {
        min-height: 66px !important;
    }

    .ier-navbar .ier-container {
        min-height: 66px !important;
        gap: 0.28rem !important;
        padding-inline: 0 !important;
    }

    .ier-brand {
        width: 132px;
        height: 56px;
    }

    .ier-brand img {
        width: 132px !important;
        max-width: 132px !important;
        max-height: 56px !important;
    }

    .ier-mobile-cta {
        order: 2;
        min-width: 112px;
        min-height: 44px;
    }

    .ie-mobile-drawer__actions {
        grid-template-columns: 1fr;
    }
}

/* Brand logo polish: full-colour mark on a curved white header section. */
.ier-navbar .ier-brand {
    position: relative;
    isolation: isolate;
    min-width: 0;
    padding: 0.42rem 2.9rem 0.4rem 0.78rem;
    border-radius: 0 0 34px 0;
    background: #fff;
    box-shadow:
        inset 0 3px 0 rgba(113, 214, 217, 0.92),
        inset -1px 0 0 rgba(13, 92, 95, 0.08),
        0 10px 24px rgba(0, 35, 34, 0.06);
}

.ier-navbar .ier-brand::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 2.95rem 0 -100vw;
    background: #fff;
    box-shadow: inset 0 3px 0 rgba(113, 214, 217, 0.92);
}

.ier-navbar .ier-brand::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -3.25rem;
    width: 6.4rem;
    height: 100%;
    border-radius: 0 0 82px 0 / 0 0 58px 0;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 58%, rgba(255, 255, 255, 0.18) 86%, rgba(255, 255, 255, 0) 100%);
    box-shadow: inset 0 3px 0 rgba(113, 214, 217, 0.8);
    transform: skewX(26deg);
    transform-origin: left top;
}

.ier-navbar .ier-brand img {
    width: 214px;
    max-width: 214px;
    max-height: 66px;
    filter: none !important;
}

@media (max-width: 1180px) {
    .ier-navbar .ier-brand {
        width: auto;
        height: auto;
        padding: 0.34rem 1.95rem 0.32rem 0.48rem;
    }

    .ier-navbar .ier-brand img {
        width: 154px !important;
        max-width: 154px !important;
        max-height: 56px !important;
    }
}

@media (max-width: 760px) {
    .ier-navbar .ier-brand {
        width: clamp(128px, 34vw, 152px) !important;
        height: 54px;
        justify-content: center;
        padding: 0.22rem 1.34rem 0.2rem 0.2rem;
    }

    .ier-navbar .ier-brand img {
        width: clamp(112px, 29vw, 136px) !important;
        max-width: clamp(112px, 29vw, 136px) !important;
        max-height: 48px !important;
    }
}

@media (max-width: 370px) {
    .ier-navbar .ier-brand {
        width: 118px !important;
        height: 50px;
        padding: 0.18rem 1.02rem 0.16rem 0.14rem;
    }

    .ier-navbar .ier-brand img {
        width: 106px !important;
        max-width: 106px !important;
        max-height: 44px !important;
    }
}

/* Header reset: simple white brand header with full-colour logo. */
.ier-navbar {
    background: #fff !important;
    border-top: 3px solid rgba(113, 214, 217, 0.95);
    border-bottom: 1px solid rgba(13, 92, 95, 0.12);
    color: #123236;
    box-shadow: 0 10px 26px rgba(5, 28, 33, 0.08);
}

.ier-navbar .ier-brand {
    position: relative;
    isolation: auto;
    width: auto !important;
    min-width: 0;
    height: auto !important;
    padding: 0 !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ier-navbar .ier-brand::before,
.ier-navbar .ier-brand::after {
    content: none !important;
}

.ier-navbar .ier-brand img {
    width: 214px !important;
    max-width: 214px !important;
    max-height: 66px !important;
    filter: none !important;
}

.ier-navbar .ier-nav > ul > li > a {
    color: #173b3f !important;
    text-shadow: none !important;
}

.ier-navbar .ier-button,
.ier-mobile-cta {
    border-color: rgba(13, 92, 95, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #2db1b7, #15777c) !important;
    color: #fff !important;
}

.ie-nav-toggle {
    border-color: rgba(13, 92, 95, 0.22) !important;
    background: rgba(13, 92, 95, 0.06) !important;
}

.ie-nav-toggle span {
    background: #173b3f !important;
}

@media (max-width: 1180px) {
    .ier-navbar .ier-brand img {
        width: 154px !important;
        max-width: 154px !important;
        max-height: 56px !important;
    }
}

@media (max-width: 760px) {
    .ier-navbar .ier-brand {
        width: clamp(118px, 31vw, 142px) !important;
        height: 54px !important;
        justify-content: center;
    }

    .ier-navbar .ier-brand img {
        width: clamp(108px, 28vw, 130px) !important;
        max-width: clamp(108px, 28vw, 130px) !important;
        max-height: 48px !important;
    }
}

@media (max-width: 370px) {
    .ier-navbar .ier-brand {
        width: 108px !important;
        height: 50px !important;
    }

    .ier-navbar .ier-brand img {
        width: 100px !important;
        max-width: 100px !important;
        max-height: 44px !important;
    }
}

/* Full-site non-home UX polish. Homepage deliberately excluded. */
body:not(.home):not(.front-page) .ie-page-hero,
body:not(.home):not(.front-page) .ier-page-hero {
    isolation: isolate;
}

body:not(.home):not(.front-page) .ie-page-hero .ie-shell,
body:not(.home):not(.front-page) .ier-page-hero .ier-container {
    position: relative;
    z-index: 1;
}

body:not(.home):not(.front-page) .ie-page-hero h1,
body:not(.home):not(.front-page) .ier-page-hero h1,
body:not(.home):not(.front-page) .ier-page h1 {
    text-wrap: balance;
}

body:not(.home):not(.front-page) .ie-page-intro,
body:not(.home):not(.front-page) .ier-lead,
body:not(.home):not(.front-page) .ier-detail-copy p,
body:not(.home):not(.front-page) .ier-content p {
    text-wrap: pretty;
}

body:not(.home):not(.front-page) .ie-reference-page .ie-page-hero .ie-shell {
    align-items: stretch;
}

body:not(.home):not(.front-page) .ie-reference-page .ie-page-hero .ie-shell > div:first-child {
    display: grid;
    align-content: center;
    gap: 1rem;
}

body:not(.home):not(.front-page) .ie-reference-visual {
    min-height: clamp(13rem, 23vw, 19rem);
}

body:not(.home):not(.front-page) .ie-reference-visual div,
body:not(.home):not(.front-page) .ie-proof-card,
body:not(.home):not(.front-page) .ie-archive-guidance article,
body:not(.home):not(.front-page) .ie-content-card,
body:not(.home):not(.front-page) .ier-article-card {
    min-width: 0;
}

body:not(.home):not(.front-page) .ie-topic-archive__hero .ie-shell {
    display: block;
}

body:not(.home):not(.front-page) .ie-topic-archive__card h2 {
    margin: 0;
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 0.98;
}

body:not(.home):not(.front-page) .ie-topic-archive__card h2 a {
    color: inherit;
    text-decoration: none;
}

body:not(.home):not(.front-page) .ie-topic-archive__card h2 a:hover,
body:not(.home):not(.front-page) .ie-topic-archive__card h2 a:focus-visible {
    color: #15777c;
}

.ie-topic-archive__pagination {
    padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.ie-topic-archive__pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.ie-topic-archive__pagination .page-numbers {
    display: inline-grid;
    min-width: 44px;
    min-height: 44px;
    place-items: center;
    border: 1px solid rgba(15, 111, 115, 0.2);
    border-radius: 6px;
    background: #fff;
    padding: 0.55rem 0.75rem;
    color: #174c50;
    font-weight: 800;
    text-decoration: none;
}

.ie-topic-archive__pagination .page-numbers.current,
.ie-topic-archive__pagination .page-numbers:hover,
.ie-topic-archive__pagination .page-numbers:focus-visible {
    border-color: #15777c;
    background: #15777c;
    color: #fff;
}

body:not(.home):not(.front-page) .ier-article .ier-page-hero {
    padding-block: clamp(2.6rem, 4.8vw, 4rem) clamp(3rem, 5vw, 4.5rem);
    background:
        linear-gradient(120deg, rgba(10, 38, 43, 0.97), rgba(24, 91, 94, 0.88)),
        #10242a;
}

body:not(.home):not(.front-page) .ier-article .ier-page-hero h1 {
    max-width: 950px;
    font-size: clamp(2.35rem, 5vw, 4.2rem);
    line-height: 0.98;
}

body:not(.home):not(.front-page) .ier-article-featured {
    width: min(1100px, calc(100% - 2rem));
    margin-inline: auto;
}

body:not(.home):not(.front-page) .ier-article-featured img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

body:not(.home):not(.front-page) .ier-article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 18rem);
}

body:not(.home):not(.front-page) .ier-detail-copy {
    max-width: 760px;
}

body:not(.home):not(.front-page) .ier-detail-copy h2,
body:not(.home):not(.front-page) .ier-content h2 {
    color: #10242a;
    font-family: "League Spartan", sans-serif;
    font-size: clamp(1.75rem, 2.6vw, 2.45rem);
    line-height: 1;
}

body:not(.home):not(.front-page) .ier-detail-copy img,
body:not(.home):not(.front-page) .ier-content img,
body:not(.home):not(.front-page) .ie-content-card img,
body:not(.home):not(.front-page) .ie-image-slot img {
    max-width: 100%;
    height: auto;
}

body:not(.home):not(.front-page) .ie-content-card__media img,
body:not(.home):not(.front-page) .ier-article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body:not(.home):not(.front-page) .ie-content-card__body,
body:not(.home):not(.front-page) .ier-article-card__body {
    min-width: 0;
}

body:not(.home):not(.front-page) .ie-reference-rich__links,
body:not(.home):not(.front-page) .ie-page-hero__actions,
body:not(.home):not(.front-page) .ie-case-archive-hero__actions {
    align-items: center;
}

body:not(.home):not(.front-page) .ie-button,
body:not(.home):not(.front-page) .ier-button {
    border-radius: 6px;
}

@media (max-width: 980px) {
    body:not(.home):not(.front-page) .ie-page-hero .ie-shell,
    body:not(.home):not(.front-page) .ie-page-hero--image-led .ie-shell,
    body:not(.home):not(.front-page) .ie-reference-page .ie-page-hero .ie-shell,
    body:not(.home):not(.front-page) .ie-archive-guidance__grid,
    body:not(.home):not(.front-page) .ie-reference-accordion-grid,
    body:not(.home):not(.front-page) .ie-content-grid,
    body:not(.home):not(.front-page) .ier-article-layout {
        grid-template-columns: 1fr;
    }

    body:not(.home):not(.front-page) .ie-page-hero {
        padding-block: clamp(2.4rem, 8vw, 3.6rem);
    }

    body:not(.home):not(.front-page) .ie-page-hero--calculator-led .ie-shell {
        gap: 1.5rem;
    }

    body:not(.home):not(.front-page) .ie-page-hero--calculator-led .ie-shell > div:first-child {
        padding-top: 0;
    }

    body:not(.home):not(.front-page) .ie-page-hero--calculator-led h1 {
        max-width: 13ch;
    }

    body:not(.home):not(.front-page) .ie-page-hero--walkthrough-led.ie-page-hero--calculator-led .ie-shell > div:first-child,
    body:not(.home):not(.front-page) .ie-page-hero--walkthrough-led.ie-page-hero--calculator-led .ie-reference-hero-calculator,
    body:not(.home):not(.front-page) .ie-page-hero--walkthrough-led.ie-page-hero--calculator-led .ie-reference-hero-walkthrough {
        grid-column: 1;
    }

    body:not(.home):not(.front-page) .ie-reference-visual {
        min-height: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body:not(.home):not(.front-page) .ie-reference-visual::before {
        opacity: 0.28;
    }

    body:not(.home):not(.front-page) .ie-content-grid-section--blog .ie-content-card:first-child {
        grid-column: auto;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    body:not(.home):not(.front-page) .ier-article-toc {
        position: static;
        order: -1;
    }
}

@media (max-width: 640px) {
    body:not(.home):not(.front-page) .ie-page-hero,
    body:not(.home):not(.front-page) .ier-page-hero {
        padding-block: 2.15rem;
    }

    body:not(.home):not(.front-page) .ie-page-hero h1,
    body:not(.home):not(.front-page) .ier-page-hero h1,
    body:not(.home):not(.front-page) .ier-page h1 {
        font-size: clamp(2rem, 12vw, 3.15rem);
        line-height: 0.96;
    }

    body:not(.home):not(.front-page) .ie-page-intro,
    body:not(.home):not(.front-page) .ier-page-hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    body:not(.home):not(.front-page) .ie-reference-visual {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    body:not(.home):not(.front-page) .ie-page-hero__actions,
    body:not(.home):not(.front-page) .ie-case-archive-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    body:not(.home):not(.front-page) .ie-page-hero__actions .ie-button,
    body:not(.home):not(.front-page) .ie-case-archive-hero__actions .ie-button,
    body:not(.home):not(.front-page) .ie-case-archive-hero__actions .ie-text-link,
    body:not(.home):not(.front-page) .ier-button {
        width: 100%;
        justify-content: center;
    }

    body:not(.home):not(.front-page) .ie-content-grid-section,
    body:not(.home):not(.front-page) .ie-reference-section,
    body:not(.home):not(.front-page) .ier-page {
        padding-block: 2.35rem;
    }

    body:not(.home):not(.front-page) .ier-article-featured {
        margin-top: -1.1rem;
        margin-bottom: 1.4rem;
    }

    body:not(.home):not(.front-page) .ier-article-featured img {
        max-height: 260px;
        border-radius: 8px;
    }
}

.ie-content-detail .ie-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 360px) {
    .ie-content-detail .ie-table-wrap table {
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .ie-content-detail .ie-table-wrap th,
    .ie-content-detail .ie-table-wrap td {
        min-width: 0;
        padding-inline: 0.25rem;
        font-size: 0.8rem;
        line-height: 1.4;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }
}

.ie-case-poster-hero {
    position: relative;
    isolation: isolate;
    min-height: 680px;
    overflow: hidden;
    background: #10242a;
    color: #fff;
}

.ie-case-poster-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--case-image);
    background-position: center;
    background-size: cover;
    content: "";
}

.ie-case-poster-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(8, 30, 34, 0.72);
    content: "";
}

.ie-case-poster-hero__inner {
    display: flex;
    min-height: 680px;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.ie-case-poster-hero__top,
.ie-case-poster-hero__bottom {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.ie-case-poster-logo {
    display: grid;
    place-items: center;
    width: 180px;
    min-height: 112px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.65rem 0.9rem;
}

.ie-case-poster-logo img {
    display: block;
    width: 136px;
    height: auto;
}

.ie-case-poster-badge {
    display: grid;
    gap: 0.2rem;
    border-left: 3px solid #6dbbbf;
    padding: 0.35rem 0 0.35rem 0.8rem;
    text-align: right;
}

.ie-case-poster-badge span {
    color: #9ee7e9;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ie-case-poster-badge strong {
    color: #fff;
    font-size: 1.05rem;
}

.ie-case-poster-hero__bottom {
    align-items: end;
}

.ie-case-poster-copy {
    max-width: 760px;
}

.ie-case-poster-copy .ie-eyebrow {
    color: #9ee7e9;
}

.ie-case-poster-copy h1 {
    max-width: 14ch;
    margin: 0.25rem 0 0.8rem;
    color: #fff;
    font-family: "League Spartan", sans-serif;
    font-size: 4.5rem;
    line-height: 0.94;
}

.ie-case-poster-copy > p:not(.ie-eyebrow) {
    max-width: 62ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
    line-height: 1.55;
}

.ie-case-poster-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.ie-case-poster-actions a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 6px;
    padding: 0.7rem 0.95rem;
    color: #fff;
    font-weight: 850;
    text-decoration: none;
}

.ie-case-poster-actions a:first-child {
    border-color: #6dbbbf;
    background: #0f6f73;
}

.ie-case-poster-metrics {
    display: grid;
    width: min(100%, 430px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.ie-case-poster-metrics div {
    display: grid;
    min-height: 108px;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    background: rgba(8, 30, 34, 0.72);
    padding: 0.85rem;
}

.ie-case-poster-metrics span {
    color: #9ee7e9;
    font-size: 1rem;
}

.ie-case-poster-metrics strong {
    margin-top: 0.2rem;
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.1;
}

.ie-case-poster-metrics em {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ier-not-found {
    max-width: 760px;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.ier-not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.25rem;
}

.ier-not-found__actions > a:not(.ier-button) {
    color: #0f6f73;
    font-weight: 800;
}

.ier-not-found__actions .ier-not-found__secondary {
    border: 1px solid #0f6f73;
    background: transparent;
    color: #0f6f73;
}

@media (max-width: 980px) {
    .ie-case-poster-hero,
    .ie-case-poster-hero__inner {
        min-height: 620px;
    }

    .ie-case-poster-hero__bottom {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ie-case-poster-copy h1 {
        font-size: 3.4rem;
    }

    .ie-case-poster-metrics {
        width: min(100%, 620px);
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ie-case-poster-hero,
    .ie-case-poster-hero__inner {
        min-height: 0;
    }

    .ie-case-poster-hero__inner {
        gap: 4rem;
        padding-top: 1.1rem;
        padding-bottom: 2rem;
    }

    .ie-case-poster-logo {
        width: 132px;
        min-height: 84px;
    }

    .ie-case-poster-logo img {
        width: 98px;
    }

    .ie-case-poster-badge strong {
        font-size: 0.9rem;
    }

    .ie-case-poster-copy h1 {
        max-width: none;
        font-size: 2.4rem;
        line-height: 0.98;
    }

    .ie-case-poster-copy > p:not(.ie-eyebrow) {
        font-size: 1rem;
    }

    .ie-case-poster-actions {
        display: grid;
    }

    .ie-case-poster-actions a {
        justify-content: center;
        text-align: center;
    }

    .ie-case-poster-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ier-not-found__actions {
        display: grid;
        align-items: stretch;
    }

    .ier-not-found__actions .ier-button {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    body:not(.home):not(.front-page) .ie-reference-page .ie-page-hero--calculator-led {
        padding-block: 1.5rem 2rem;
    }

    body:not(.home):not(.front-page) .ie-reference-page .ie-page-hero--calculator-led .ie-shell {
        gap: 0.85rem;
    }

    body:not(.home):not(.front-page) .ie-reference-page .ie-page-hero--calculator-led .ie-shell > div:first-child {
        gap: 0.55rem !important;
    }

    body:not(.home):not(.front-page) .ie-reference-page .ie-page-hero--calculator-led h1 {
        font-size: 2.15rem;
        line-height: 1;
        max-width: none;
    }

    body:not(.home):not(.front-page) .ie-reference-page .ie-page-hero--calculator-led .ie-page-intro {
        font-size: 0.92rem;
        line-height: 1.42;
        max-width: 23rem;
    }
}

/* Service hero order: put the existing copy and CTA before the walkthrough. */
.ie-page-hero--walkthrough-led .ie-shell > div:first-child {
    order: 1;
}

.ie-page-hero--walkthrough-led .ie-reference-hero-walkthrough {
    order: 2;
}
