/* Fabric-first offer system. Kept separate from the established site layer so
   the product catalog can evolve without destabilizing legacy pages. */

.fabric-hero .hero-copy {
    max-width: 690px;
}

.fabric-hero .hero-layout {
    gap: clamp(42px, 6vw, 88px);
}

.hero-offer-lockup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    max-width: 650px;
    margin: 30px 0 26px;
    padding: 18px 20px;
    border: 1px solid rgba(188, 198, 212, 0.2);
    border-left: 3px solid var(--brand-cobalt-bright);
    border-radius: 14px;
    background: rgba(7, 21, 42, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-offer-lockup div {
    display: grid;
    gap: 3px;
}

.hero-offer-lockup div:last-child {
    text-align: right;
}

.hero-offer-lockup span {
    color: rgba(232, 236, 242, 0.56);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-offer-lockup strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.fabric-scan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0 12px;
}

.fabric-scan-grid div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
    padding: 0 13px;
    border: 1px solid rgba(111, 137, 178, 0.16);
    border-radius: 9px;
    background: rgba(2, 11, 27, 0.5);
}

.fabric-scan-grid span {
    color: rgba(232, 236, 242, 0.74);
    font-size: 0.72rem;
    font-weight: 700;
}

.fabric-scan-grid i,
.health-score-row i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.signal-good,
.score-good {
    background: var(--status-green);
    box-shadow: 0 0 12px rgba(79, 194, 139, 0.52);
}

.signal-watch,
.score-watch {
    background: #e3b85e;
    box-shadow: 0 0 12px rgba(227, 184, 94, 0.45);
}

.signal-risk,
.score-risk {
    background: #e17373;
    box-shadow: 0 0 12px rgba(225, 115, 115, 0.48);
}

.fabric-core {
    min-height: 145px;
    margin-top: 8px;
}

.fabric-output {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.fabric-output div {
    display: grid;
    min-height: 72px;
    place-content: center;
    text-align: center;
    border: 1px solid rgba(53, 107, 208, 0.22);
    border-radius: 9px;
    background: rgba(34, 87, 191, 0.08);
}

.fabric-output strong {
    color: var(--brand-silver-bright);
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.fabric-output span {
    color: rgba(232, 236, 242, 0.5);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.fabric-domain-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 58px;
    border: 1px solid var(--line-light);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
}

.fabric-domain-grid article {
    position: relative;
    min-height: 250px;
    padding: 28px;
    border-right: 1px solid var(--line-light);
}

.fabric-domain-grid article:last-child {
    border-right: 0;
}

.fabric-domain-grid article::after {
    position: absolute;
    right: 24px;
    bottom: 20px;
    left: 24px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--brand-cobalt), transparent);
    opacity: 0.4;
}

.fabric-domain-grid article > span,
.guardrail-grid article > span {
    color: var(--brand-cobalt);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.fabric-domain-grid h3,
.guardrail-grid h3 {
    margin: 36px 0 10px;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.fabric-domain-grid p,
.guardrail-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.91rem;
}

.home-offer-stack {
    display: grid;
    border-top: 1px solid var(--line-dark);
}

.home-offer-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 170px 34px;
    gap: 24px;
    align-items: center;
    min-height: 142px;
    padding: 22px 18px;
    border-bottom: 1px solid var(--line-dark);
    transition: background 220ms ease, transform 220ms var(--ease-out);
}

.home-offer-row:hover {
    background: rgba(53, 107, 208, 0.08);
    transform: translateX(5px);
}

.home-offer-row-flagship {
    background:
        linear-gradient(90deg, rgba(34, 87, 191, 0.18), rgba(34, 87, 191, 0.02) 58%, transparent);
    box-shadow: inset 3px 0 0 var(--brand-cobalt-bright);
}

.home-offer-index {
    color: var(--brand-steel);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.home-offer-copy {
    display: grid;
    gap: 5px;
}

.home-offer-copy small {
    color: var(--brand-steel);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-offer-copy strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.home-offer-copy > span {
    max-width: 720px;
    color: rgba(232, 236, 242, 0.58);
    font-size: 0.9rem;
}

.home-offer-price {
    display: grid;
    text-align: right;
}

.home-offer-price strong {
    color: var(--brand-silver-bright);
    font-family: var(--font-display);
    font-size: 0.95rem;
    line-height: 1.25;
}

.home-offer-price small {
    color: rgba(232, 236, 242, 0.44);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-offer-arrow {
    color: var(--brand-cobalt-bright);
    font-size: 1.3rem;
}

.path-choice-heading {
    margin-bottom: 44px;
}

.path-choice-heading h2 {
    max-width: 840px;
}

.path-choice-grid,
.prospect-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.path-choice-grid article,
.prospect-path {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line-light);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 55px rgba(6, 16, 29, 0.08);
}

.prospect-path {
    border-color: var(--line-dark);
    background: rgba(7, 21, 42, 0.7);
}

.path-status {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: var(--brand-steel);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.path-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-cobalt-bright);
    box-shadow: 0 0 12px rgba(53, 107, 208, 0.52);
}

.path-status-dark {
    color: var(--brand-cobalt);
}

.path-choice-grid h3,
.prospect-path h3 {
    margin: 24px 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.prospect-path h3 {
    color: var(--white);
}

.prospect-path > p {
    color: rgba(232, 236, 242, 0.6);
}

.path-choice-grid ul,
.prospect-path ul {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-light);
}

.prospect-path ul {
    border-color: var(--line-dark);
}

.path-choice-grid li a,
.prospect-path li a {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 0.9rem;
    font-weight: 750;
}

.prospect-path li a {
    border-color: var(--line-dark);
}

.path-choice-grid li span,
.prospect-path li span {
    color: var(--brand-cobalt);
}

.prospect-path li span {
    color: var(--brand-steel);
    white-space: nowrap;
}

.power-bi-entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px auto;
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(34, 87, 191, 0.18);
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 20%, rgba(53, 107, 208, 0.1), transparent 34%),
        var(--white);
    box-shadow: 0 22px 65px rgba(6, 16, 29, 0.08);
}

.power-bi-entry h3 {
    margin: 18px 0 8px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.power-bi-entry p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
}

.power-bi-entry-price {
    display: grid;
    text-align: center;
}

.power-bi-entry-price strong {
    color: var(--brand-cobalt);
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.2;
}

.power-bi-entry-price span {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.power-bi-entry > .text-link {
    grid-column: 1 / -1;
}

.progression-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr) 28px) minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.progression-strip > div {
    display: grid;
    min-height: 160px;
    align-content: center;
    padding: 22px;
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    background: rgba(7, 21, 42, 0.58);
}

.progression-strip > div span {
    color: var(--brand-steel);
    font-size: 0.62rem;
    font-weight: 800;
}

.progression-strip > div strong {
    margin: 20px 0 2px;
    color: var(--white);
    font-family: var(--font-display);
}

.progression-strip > div small {
    color: rgba(232, 236, 242, 0.5);
}

.progression-strip > i {
    color: var(--brand-steel);
    font-style: normal;
    text-align: center;
}

.catalog-hero-note {
    color: rgba(232, 236, 242, 0.46);
    font-size: 0.78rem;
}

.featured-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.featured-offer-card {
    position: relative;
    display: flex;
    min-height: 380px;
    flex-direction: column;
    padding: clamp(26px, 4vw, 42px);
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(6, 16, 29, 0.07);
}

.featured-offer-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--brand-cobalt), var(--brand-steel), transparent);
}

.featured-offer-card-flagship {
    border-color: rgba(34, 87, 191, 0.3);
    background:
        radial-gradient(circle at 90% 15%, rgba(53, 107, 208, 0.13), transparent 32%),
        var(--white);
}

.offer-card-top,
.catalog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flagship-label {
    align-self: flex-start;
    margin-top: 26px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 87, 191, 0.1);
    color: var(--brand-cobalt);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.featured-offer-card h2 {
    margin: 38px 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.featured-offer-card-flagship h2 {
    margin-top: 20px;
}

.featured-offer-card > p {
    color: var(--muted);
}

.offer-card-price {
    display: flex;
    gap: 9px;
    align-items: baseline;
    margin: auto 0 22px;
    padding-top: 28px;
}

.offer-card-price strong {
    color: var(--brand-cobalt);
    font-family: var(--font-display);
    font-size: 1.55rem;
}

.offer-card-price span {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 750;
    text-transform: uppercase;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.catalog-card {
    display: flex;
    min-height: 400px;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--line-light);
    border-radius: 18px;
    background: var(--white);
}

.catalog-card-header {
    color: var(--brand-cobalt);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.catalog-card-header strong {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0;
}

.catalog-card h3 {
    margin: 34px 0 12px;
    font-family: var(--font-display);
    font-size: 1.55rem;
}

.catalog-card > p {
    color: var(--muted);
}

.catalog-card dl {
    display: grid;
    gap: 12px;
    margin: 20px 0 28px;
}

.catalog-card dl div {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 18px;
    padding-top: 12px;
    border-top: 1px solid var(--line-light);
}

.catalog-card dt {
    color: var(--brand-cobalt);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-card dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.catalog-card > .text-link {
    margin-top: auto;
}

.guardrail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line-light);
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
}

.guardrail-grid article {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid var(--line-light);
}

.guardrail-grid article:last-child {
    border-right: 0;
}

.add-on-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(34px, 6vw, 80px);
    margin-top: 58px;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid var(--line-light);
    border-radius: 20px;
    background: var(--paper-blue);
}

.add-on-panel h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.add-on-panel dl {
    margin: 0;
}

.add-on-panel dl div {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-light);
}

.add-on-panel dt {
    color: var(--muted);
}

.add-on-panel dd {
    margin: 0;
    color: var(--brand-cobalt);
    font-weight: 800;
    white-space: nowrap;
}

.broader-services {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
}

.broader-service-links {
    display: grid;
    border-top: 1px solid var(--line-dark);
}

.broader-service-links a {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    color: rgba(232, 236, 242, 0.78);
    font-weight: 750;
}

.broader-service-links span {
    color: var(--brand-steel);
}

.fixed-offer-hero {
    min-height: 690px;
}

.fixed-offer-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
    gap: clamp(45px, 8vw, 110px);
    align-items: end;
    padding-top: clamp(120px, 16vw, 190px);
    padding-bottom: 90px;
}

.fixed-offer-heading h1 {
    max-width: 850px;
    margin: 25px 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.4vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.fixed-offer-heading h1 span {
    background: linear-gradient(100deg, var(--brand-silver-bright), var(--brand-cobalt-bright));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fixed-offer-heading .page-hero-lede {
    max-width: 800px;
    margin: 0;
}

.offer-price-panel {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(188, 198, 212, 0.2);
    border-radius: 18px;
    background: rgba(7, 21, 42, 0.78);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.offer-price-panel::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--brand-cobalt), var(--brand-steel));
}

.offer-price-panel > span {
    color: var(--brand-steel);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.offer-price-panel > strong {
    color: var(--brand-silver-bright);
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.1;
}

.offer-price-panel p {
    margin: 0 0 12px;
    color: rgba(232, 236, 242, 0.6);
    font-size: 0.82rem;
}

.offer-price-panel small {
    color: rgba(232, 236, 242, 0.42);
    text-align: center;
}

.offer-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(45px, 8vw, 110px);
    align-items: start;
    margin-bottom: 65px;
}

.offer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.offer-list-card {
    padding: clamp(28px, 5vw, 50px);
    border: 1px solid var(--line-light);
    border-radius: 20px;
    background: var(--white);
}

.offer-list-card-accent {
    border-color: rgba(34, 87, 191, 0.25);
    background:
        radial-gradient(circle at 92% 8%, rgba(53, 107, 208, 0.12), transparent 28%),
        var(--white);
}

.offer-list-card h2 {
    margin-bottom: 30px;
    font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.scope-check-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-light);
}

.scope-check-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--muted);
    font-size: 0.88rem;
}

.scope-check-list li span {
    color: var(--brand-cobalt);
    font-weight: 800;
}

.deliverable-list-dark {
    border-color: var(--line-dark);
}

.deliverable-list-dark li {
    border-color: var(--line-dark);
    color: rgba(232, 236, 242, 0.75);
}

.deliverable-list-dark span {
    color: var(--brand-steel);
}

.boundary-panel {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(40px, 8vw, 110px);
    padding: clamp(32px, 6vw, 70px);
    border: 1px solid rgba(34, 87, 191, 0.22);
    border-radius: 22px;
    background:
        radial-gradient(circle at 8% 10%, rgba(53, 107, 208, 0.1), transparent 28%),
        var(--white);
}

.boundary-statement {
    max-width: 700px;
    color: var(--text);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 650;
}

.boundary-label {
    color: var(--brand-cobalt);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.boundary-panel ul {
    margin: 20px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.boundary-panel li + li {
    margin-top: 10px;
}

.scope-note {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 28px;
    margin-top: 22px;
    padding: 23px 28px;
    border-left: 3px solid var(--brand-cobalt);
    background: var(--paper-blue);
}

.scope-note strong {
    font-family: var(--font-display);
}

.scope-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.87rem;
}

.offer-follow-on {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 60px;
    align-items: end;
}

.offer-follow-on p {
    color: var(--muted);
    font-size: 1.05rem;
}

.offer-follow-on .text-link {
    grid-column: 2;
}

.health-score-preview {
    max-width: 920px;
    margin-top: 60px;
    border: 1px solid var(--line-light);
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 24px 65px rgba(6, 16, 29, 0.08);
}

.health-score-header,
.health-score-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px 100px;
    gap: 18px;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line-light);
}

.health-score-header {
    grid-template-columns: 1fr auto;
    background: var(--brand-navy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.health-score-header span:last-child {
    color: rgba(232, 236, 242, 0.48);
    font-size: 0.58rem;
}

.health-score-row:last-child {
    border-bottom: 0;
}

.health-score-row > span {
    font-weight: 700;
}

.health-score-row > strong {
    color: var(--muted);
    font-size: 0.72rem;
    text-align: right;
    text-transform: uppercase;
}

.follow-on-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.follow-on-grid a {
    display: grid;
    min-height: 190px;
    align-content: space-between;
    padding: 24px;
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    background: rgba(7, 21, 42, 0.56);
}

.follow-on-grid span {
    color: var(--brand-steel);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.follow-on-grid strong {
    color: var(--white);
    font-family: var(--font-display);
}

.follow-on-grid i {
    color: var(--brand-cobalt-bright);
    font-style: normal;
}

.power-bi-fabric-bridge {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

.power-bi-fabric-bridge p {
    color: rgba(232, 236, 242, 0.62);
}

.bridge-offer {
    display: grid;
    gap: 10px;
    padding: 28px;
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    background: rgba(7, 21, 42, 0.7);
}

.bridge-offer > span {
    color: var(--brand-steel);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bridge-offer > strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.bridge-offer > small {
    color: rgba(232, 236, 242, 0.5);
}

@media (max-width: 1060px) {
    .fabric-domain-grid,
    .guardrail-grid,
    .follow-on-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fabric-domain-grid article:nth-child(2),
    .guardrail-grid article:nth-child(2) {
        border-right: 0;
    }

    .fabric-domain-grid article:nth-child(-n+2),
    .guardrail-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line-light);
    }

    .progression-strip {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .progression-strip > i {
        display: none;
    }

    .fixed-offer-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .offer-price-panel {
        max-width: 520px;
    }

    .power-bi-entry {
        grid-template-columns: minmax(0, 1fr) 130px;
    }

    .power-bi-entry .button {
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .featured-offer-grid,
    .catalog-grid,
    .path-choice-grid,
    .prospect-path-grid,
    .offer-columns,
    .boundary-panel,
    .offer-intro-grid,
    .add-on-panel,
    .broader-services,
    .offer-follow-on,
    .power-bi-fabric-bridge {
        grid-template-columns: 1fr;
    }

    .home-offer-row {
        grid-template-columns: 44px minmax(0, 1fr) 110px;
    }

    .home-offer-arrow {
        display: none;
    }

    .progression-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .progression-strip > div:last-of-type {
        grid-column: 1 / -1;
    }

    .offer-follow-on .text-link {
        grid-column: 1;
    }

    .scope-note {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .power-bi-entry {
        grid-template-columns: 1fr;
    }

    .power-bi-entry-price {
        text-align: left;
    }

    .follow-on-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .hero-offer-lockup {
        grid-template-columns: 1fr;
    }

    .hero-offer-lockup div:last-child {
        text-align: left;
    }

    .fabric-scan-grid {
        grid-template-columns: 1fr;
    }

    .fabric-output {
        gap: 5px;
    }

    .fabric-output div {
        min-height: 62px;
    }

    .fabric-domain-grid,
    .guardrail-grid,
    .follow-on-grid,
    .progression-strip {
        grid-template-columns: 1fr;
    }

    .fabric-domain-grid article,
    .guardrail-grid article {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .fabric-domain-grid article:last-child,
    .guardrail-grid article:last-child {
        border-bottom: 0;
    }

    .home-offer-row {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        padding: 22px 10px;
    }

    .home-offer-price {
        grid-column: 2;
        text-align: left;
    }

    .progression-strip > div:last-of-type {
        grid-column: auto;
    }

    .fixed-offer-hero {
        min-height: 0;
    }

    .fixed-offer-heading {
        gap: 34px;
        padding-top: 120px;
        padding-bottom: 64px;
    }

    .fixed-offer-heading h1 {
        font-size: clamp(2.65rem, 14vw, 4rem);
    }

    .offer-price-panel {
        padding: 24px;
    }

    .featured-offer-card,
    .catalog-card {
        min-height: 0;
        padding: 26px;
    }

    .catalog-card dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .health-score-header {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .health-score-row {
        grid-template-columns: minmax(0, 1fr) 14px;
    }

    .health-score-row > strong {
        grid-column: 1 / -1;
        text-align: left;
    }

    .add-on-panel dl div {
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-offer-row {
        transition: none;
    }

    .home-offer-row:hover {
        transform: none;
    }
}
