.ti-eyebrow {
    font-size: var(--font-size-sm);
}

#hero-section {
    padding: 164px 0 0;
}
#hero-section .section-container {
    width: 100%;
    max-width: 1370px;
    padding: 0;
}
#hero-section .tag-hero__intro {
    max-width: 860px; /* task #32: centered text-column cap */
    margin: 0 auto 40px;
    text-align: center;
}
#hero-section .ti-eyebrow {
    margin-bottom: 16px;;
    padding: 6px 19px;
}
.tag-hero__title {
    margin: 0;
    line-height: normal;
    font-size: var(--font-size-7xl);
}
/* task #42: Lynx logo lockup rendered in place of the hero title text */
.tag-hero__title--logo {
    margin: 0 0 8px;
    line-height: 0;
}
.tag-hero__title--logo img {
    display: inline-block;
    width: 240px;
    height: auto;
}
.tag-hero__title + .ti-link-gradient {
    margin-bottom: 20px;
    font-size: var(--font-size-lg);
}
.tag-hero__subtitle {
    margin: 0 0 20px;
    padding: 0;
    line-height: normal;
}
.tag-hero__description p {
    line-height: normal;
}
#hero-section .tag-hero__media {
    margin: 0 auto 62px;
    text-align: center;
}
#hero-section .tag-hero__media .tag-hero__image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
/* task #35: hero Wistia video option — .video-wistia is solution/homepage-scoped in
   webstick.css/solution.css (neither loads on this template), so scope the figure here. */
#hero-section .tag-hero__media .video-wistia {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 100%;
}
#hero-section .tag-hero__media .video-wistia > img {
    display: block;
    max-width: 100%;
    height: auto;
    pointer-events: none;
}
#hero-section .tag-hero__media .video-wistia button {
    position: absolute;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
#hero-section .tag-hero__media .video-wistia button .play-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}
/* task #35: hero Arcade interactive-demo option — responsive aspect-ratio frame.
   Uses CSS `aspect-ratio` (resolves against the element's own width) rather than the
   padding-bottom % hack, which would resolve against the full-width parent here.
   Default = Arcade's 61.9% embed ratio; per-embed override via inline aspect-ratio
   from the ACF "Arcade Aspect" field. */
#hero-section .tag-hero__media .tag-hero__arcade {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 100 / 61.9;
    border-radius: 12px;
    overflow: hidden;
}
#hero-section .tag-hero__media .tag-hero__arcade iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
/* task #32: boxes moved to their own section below the hero (same bg, separated by spacing) */
.tag-unified-section {
    padding: 40px 0 80px;
}
.tag-unified-section .tag-hero__boxes-title {
    max-width: 1184px;
    margin: 0 auto 32px;
    text-align: center;
    line-height: 1.2;
    font-size: var(--font-size-4xl);
}
.tag-hero__boxes {
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1184px;
    margin: 0 auto;
    text-align: left;
}
.tag-hero__boxes .tag-hero__box {
    flex: 1 1 calc(50% - 12px);
}
.tag-unified-section .ti-card {
    gap: 6px;
    padding: 30px 30px 36px;
}
.tag-unified-section .ti-card .title-wrapper {
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}
.tag-hero__box-icon {
    width: 48px;
    height: 48px;
}
.tag-hero__box-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.tag-hero__box-title {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-2xl);
}
.tag-hero__box-list {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-md);
}
.tag-hero__box-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.tag-hero__box-item + .tag-hero__box-item {
    margin-top: 10px;
}
.tag-hero__box-check {
    color: #326DE6;
    flex-shrink: 0;
    line-height: 1;
    transform: translateY(4px);
}
.tag-hero__box:nth-child(2) .tag-hero__box-check {
    color: #6100A6;
}
#hero-section .btns-wrapper {
    margin-top: 0;
    margin-bottom: 48px;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.tag-problem-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-bg-light);
}
.tag-problem__header {
    max-width: 900px;
    margin: 0 auto 43px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.tag-problem__header .section-title {
    margin: 0;
    padding: 0;
    max-width: 900px;
    line-height: 1.3;
}
.tag-problem__header .intro-text {
    margin: 0;
    max-width: 900px;
    font-size: var(--font-size-md);
    line-height: 1.3;
    color: var(--color-text-body);
}
/* task #43: centered heading above the problem cards grid */
.tag-problem__cards-heading {
    max-width: 900px;
    margin: 0 auto 28px;
    font-size: var(--font-size-2xl);
    line-height: 1.3;
}
.tag-problem__cards {
    /* task #28 follow-up: real grid (2 cols) so cards can subgrid their inner rows */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}
.tag-problem-section .ti-card {
    /* task #28 follow-up: subgrid so each ROW's two cards share row tracks — the title
       (and the italic problem statement after it) align to the taller of the two in
       THAT row only, no global 2-line forcing. Equal per-row card height keeps the
       "What you need:" line bottom-aligned. 3 tracks = icon-wrap / title / body;
       internal spacing comes from element margins (row-gap:0). Assumes each card has
       an icon (all current cards do) — a card without one would span the wrong tracks. */
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 0;
    text-align: left;
    padding: 30px 26px 30px 30px;
    min-height: 325px;
}
.tag-problem__icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
}
.tag-problem__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}
.tag-problem__icon.icon-visibility {
    width: 26px;
    height: 16px;
    border: 2px solid #f67171;
    border-radius: 14px;
}
.tag-problem__icon.icon-visibility::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f67171;
    transform: translate(-50%, -50%);
}
.tag-problem__icon.icon-autonomous {
    width: 24px;
    height: 24px;
}
.tag-problem__icon.icon-autonomous::before,
.tag-problem__icon.icon-autonomous::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #ee9e0b;
}
.tag-problem__icon.icon-autonomous::before {
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
}
.tag-problem__icon.icon-autonomous::after {
    width: 8px;
    height: 8px;
    left: 8px;
    top: 8px;
    background: #ee9e0b;
}
.tag-problem__icon.icon-determinism {
    width: 26px;
    height: 18px;
    border-left: 2px solid #f47f23;
    border-bottom: 2px solid #f47f23;
    transform: translate(-50%, -58%) rotate(-10deg);
}
.tag-problem__icon.icon-determinism::before {
    content: '';
    position: absolute;
    right: -1px;
    top: -6px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #f47f23;
    border-right: 2px solid #f47f23;
    transform: rotate(45deg);
}
.card-title {
    /* task #28 follow-up: uniform vertical rhythm — matches .card-desc p gap (20px) */
    margin: 0 0 20px;
    padding: 0;
    line-height: 1.3;
}
.card-desc {
    /* task #28 follow-up: 16px → 18px + roomier line-height for legibility / to fill the card */
    margin: 0;
    font-size: var(--font-size-md);
    line-height: 1.5;
}
/* task #28: card body is now a WYSIWYG field — tidy inner block spacing/lists */
.card-desc > :first-child { margin-top: 0; }
.card-desc > :last-child { margin-bottom: 0; }
/* task #28 follow-up: 20px paragraph gap = base space between body paragraphs */
.card-desc p { margin: 0 0 20px; }
/* task #28 follow-up: extra separation after the italic problem statement (the <em> line) */
.card-desc p:first-child:not(:last-child) { margin-bottom: 40px; }
.card-desc ul { margin: 0 0 20px; padding-left: 1.2em; list-style: disc; }
.card-desc ol { margin: 0 0 20px; padding-left: 1.2em; list-style: decimal; }
.card-desc a { text-decoration: underline; }
/* task #28 follow-up: bottom-align the "What you need:" line across the row so it
   lands on one baseline no matter whether the title/problem run one or two lines.
   .ti-card is already flex/column and stretches to the tallest sibling, so let the
   body fill the leftover height and push its last block to the bottom (margin-top:auto).
   The 40px above keeps as a *minimum* gap; extra space collapses into the auto margin. */
.tag-problem-section .card-desc {
    /* fills its (stretched) subgrid body track so margin-top:auto can pin the last block */
    display: flex;
    flex-direction: column;
}
.tag-problem-section .card-desc > :last-child {
    margin-top: auto;
}
.tag-problem__icon-wrap.tone-red {
    background: rgba(246, 113, 113, 0.3);
}
.tag-problem__icon-wrap.tone-yellow {
    background: rgba(250, 204, 19, 0.3);
}
.tag-problem__icon-wrap.tone-orange {
    background: rgba(244, 127, 35, 0.2);
}
.tag-problem__warning-wrap {
    max-width: 552px;
    margin: 25px auto 0;
    position: relative;
}
.tag-problem__warning-caret {
    width: 0;
    height: 0;
    border-top: 18px solid rgba(35, 31, 31, 0.2);
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    margin: 0 auto 18px;
}
.tag-problem__warning {
    background: var(--color-white);
    border: var(--border-default);
    border-radius: 5px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 20px;
}
.tag-problem__warning strong {
    font-size: var(--font-size-md);
    line-height: 1.3;
    color: var(--color-text-main);
    font-weight: var(--font-weight-bold);
}

.tag-solution-section {
    padding: 80px 0 60px;
    text-align: center;
}
.tag-solution__header {
    margin: 0 auto 37px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tag-solution__header .ti-category {
    margin-bottom: 0;
}
.tag-solution-section .section-title {
    margin: 0;
    padding-bottom: 4px;
    line-height: normal;
}
.tag-solution-section .intro-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: normal;
}
/* Task #37 — optional CTA button at the bottom of the Solution section
   (empty-gated in tag-solution.php; renders nothing until populated). */
.tag-solution__cta {
    margin-top: 40px;
    gap: 16px;
    flex-wrap: wrap;
}
.tag-solution__highlights {
    max-width: 900px;
    margin: 0 auto 56px;
    padding: 19px 40px;
}
.tag-solution__highlights p {
    font-size: var(--font-size-xl);
    line-height: normal;
}
.tag-solution__highlights p:last-child {
    margin-bottom: 0;
}
.tag-solution__highlights strong,
.tag-solution__highlights b {
    background: var(--color-link-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: var(--font-weight-bold);
}
.capabilities-wrapper {
    text-align: left;
}
.capabilities-wrapper .ti-eyebrow {
    margin-bottom: 16px;
    padding: 6px 23px;
}
.capabilities-wrapper .capabilities-title {
    margin-bottom: 47px;
}
.tag-solution-switcher {
    display: flex;
    gap: 50px;
    max-width: 1177px;
    margin: 0 auto;
    align-items: flex-start;
}
.tag-solution-switcher__rail {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1 0 610px;
    max-width: 610px;
}
.tag-solution-switcher__rail::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 24px;
    bottom: 38px;
    width: 1px;
    background: rgba(35, 31, 31, 0.2);
}
.tag-solution-switcher__tab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-height: 58px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-text-main);
    text-align: left;
    cursor: pointer;
    width: 100%;
}
.tag-solution-switcher__tab-header {
    min-height: 43px;
    padding-left: 90px;
    width: 100%;
    position: relative;
}
.tag-solution-switcher__tab-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    line-height: 1.302;
    opacity: 0.65;
    transition: opacity .2s ease;
}
.tag-solution-switcher__tab-content {
    display: none;
    padding-left: 90px;
    width: 100%;
}
.tag-solution-switcher__tab.is-active .tag-solution-switcher__tab-content {
    display: block;
    cursor: default;
}
.tag-solution-switcher__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #929292;
    flex-shrink: 0;
    overflow: hidden;
    z-index: 1;
    position: absolute;
    left: 19px;
    top: calc(50% - 6px);
    transform: translateY(-50%);
    transition: width .24s ease, height .24s ease, border-radius .24s ease, top .24s ease, left .24s ease, background-color .24s ease;
}
.tag-solution-switcher__dot-icon {
    display: none;
    width: 26px;
    height: 26px;
    object-fit: contain;
    opacity: .75;
}
.tag-solution-switcher__dot-icon-fallback {
    display: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #326DE6;
    opacity: .75;
}
.tag-solution-switcher__tab.is-active .tag-solution-switcher__dot {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #CFDFFF;
    border: 0;
    top: calc(50% + 3px);
    left: 0;
}
.tag-solution-switcher__tab.is-active .tag-solution-switcher__dot-icon,
.tag-solution-switcher__tab.is-active .tag-solution-switcher__dot-icon-fallback {
    display: block;
    opacity: 1;
}
.tag-solution-switcher__tab.is-active .tag-solution-switcher__tab-title {
    opacity: 1;
}
.tag-solution-switcher__tab:focus-visible {
    outline: 2px solid var(--color-brand-primary);
    outline-offset: 4px;
}
.tag-solution-switcher__rail:has(.tag-solution-switcher__tab:last-child.is-active)::before {
    bottom: auto;
    height: var(--_last-tab-line-height, calc(100% - 62px));
}
.tag-solution-switcher__tab:last-child.is-active .tag-solution-switcher__tab-content {
    --_content-exposed: 1;
}
.tag-solution-switcher__panels {
    flex: 1 1 520px;
    max-width: 520px;
    min-height: 1px;
    padding: 0;
}
.tag-solution-switcher__panel-content {
    opacity: 0;
    transform: translateY(12px);
}
.tag-solution-switcher__panel.is-active .tag-solution-switcher__panel-content {
    animation: tag-solution-panel-in .32s ease-out both;
}
.tag-solution-switcher__summary {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.302;
    opacity: .8;
    max-width: 388px;
}
.tag-solution-switcher__image-wrap {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-top: 24px;
}
.tag-solution-switcher__image-wrap img {
    width: 100%;
    display: block;
    height: auto;
}
.tag-solution-switcher__headline {
    margin: 0 0 23px;
    font-size: 22px;
    line-height: 1.302;
    color: var(--color-text-main);
}
.tag-solution-switcher__points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tag-solution-switcher__point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.tag-solution-switcher__point-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px dashed #326DE6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tag-solution-switcher__point-icon img {
    display: block;
    max-width: 26px;
}
.tag-solution-switcher__point-icon-fallback {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #326DE6;
}
.tag-solution-switcher__point-title {
    margin: 0 0 8px;
    padding: 0;
    font-size: 18px;
    line-height: 1.302;
}
.tag-solution-switcher__point-desc {
    margin: 0;
    line-height: 1.302;
    color: var(--color-text-main);
    opacity: .8;
}
@keyframes tag-solution-panel-in {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Task #45 — scroll-pin rebuild of the capabilities stepper.
   Desktop + motion-ok only: pin the switcher so scroll progress drives the
   active step (JS: .js-tag-solution-switcher in webstick.js). Mobile (<=1023)
   and reduced-motion fall back to tap-to-expand (no pin). */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
    .tag-solution-track {
        position: relative;
    }
    .tag-solution-switcher {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
    }
    .tag-solution-switcher__tab.is-active .tag-solution-switcher__tab-content {
        animation: tag-solution-panel-in .32s ease-out both;
    }
}

/* Task #45 — while JS measures the tallest step to reserve the pinned-box
   height, freeze motion so the rapid step-cycling never paints. */
.tag-solution-switcher.is-measuring,
.tag-solution-switcher.is-measuring * {
    transition: none !important;
    animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .tag-solution-switcher__dot {
        transition: none;
    }
    .tag-solution-switcher__panel-content,
    .tag-solution-switcher__panel.is-active .tag-solution-switcher__panel-content {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.tag-deployment-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-bg-light);
}
.tag-deployment__header {
    max-width: 900px;
    margin: 0 auto 59px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.tag-deployment__title {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}
.tag-deployment__header .intro-text {
    margin: 0;
    font-size: var(--font-size-md);
    line-height: normal;
    color: var(--color-text-body);
}
.tag-deployment__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.tag-deployment__card {
    text-align: left;
    padding: 30px 30px 30px 38px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tag-deployment__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--color-link-gradient);
    border-radius: 5px 0 0 5px;
}
.tag-deployment__card-top {
    gap: 20px;
    align-items: center;
}
.tag-deployment__card .ti-eyebrow {
    margin-bottom: 0;
    padding: 6px 19px;
    align-self: flex-start;
}
.tag-deployment__card-title {
    margin: 0;
    font-size: var(--font-size-2xl);
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
}
.tag-deployment__card-desc {
    margin: 0;
    line-height: normal;
}
.tag-deployment__best-for {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px dashed #326DE6;
    border-radius: 5px;
    padding: 18px 16px 27px;
}
.tag-deployment__best-for-icon {
    flex-shrink: 0;
    line-height: 0;
}
.tag-deployment__best-for-text {
    font-size: var(--font-size-base);
    line-height: 1.5;
}
.tag-deployment__best-for-text strong {
    display: block;
    margin-bottom: 8px;
}

#why-tigera .ti-category {
    margin-bottom: 13px;
}
#why-tigera .home-section-title {
    line-height: normal;
}

/* =============================================
   TAG CTA Section — Last strip before footer
   ============================================= */

.tag-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-bg-light);
}
.tag-cta__header {
    margin: 0 auto 40px;
}
.tag-cta__header .section-title {
    margin: 0 0 10px;
    line-height: normal;
}
.tag-cta__header .intro-text {
    max-width: 870px;
    margin: 0 auto;
    line-height: normal;
}
.tag-cta__buttons {
    gap: 16px;
    margin-bottom: 58px;
    flex-wrap: wrap;
    justify-content: center;
}
.tag-cta-section .ti-btn {
    min-height: 48px;
}

/* Workshop card */
.tag-cta__workshop {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 30px 40px;
}
.tag-cta__workshop .title-wrapper {
    gap: 16px;
    margin-bottom: 16px;
}
img.tag-cta__workshop-icon  {
    width: 50px;
    height: auto;
}
.tag-cta__workshop-title {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-2xl);
    line-height: 1.3;
}
.tag-cta__workshop-desc {
    margin: 0;
    line-height: normal;
}
.tag-cta__workshop-action {
    margin-top: 20px;
}
.tag-cta__workshop-action .ti-btn-tertiary {
    padding: 10px 40px;
    background-color: #326DE6;
    color: var(--color-white);
    border-color: #326DE6;
}
.tag-cta__workshop-action .ti-btn-tertiary:hover {
    color: #326DE6;
}


@media (max-width: 1280px) {
    .tag-hero__title {
        font-size: var(--font-size-6xl);
        line-height: 1.15;
    }
    .section-container {
        max-width: 1040px;
    }
    .tag-hero__boxes {
        gap: 18px;
    }
    #hero-section .section-container {
        padding: 0 20px;
    }
    .tag-unified-section .ti-card {
        padding: 30px;
    }
    .tag-problem__cards {
        gap: 16px;
    }
    .tag-problem-section .ti-card {
        /* task #28: keep 2x2 at this breakpoint (gap 16px); grid columns set on .tag-problem__cards */
        padding: 30px 25px;
    }
    .tag-solution-switcher__tab-header,
    .tag-solution-switcher__tab-content {
        padding-left: 76px;
    }
    .tag-solution__highlights p {
        font-size: var(--font-size-lg);
    }
    .tag-solution-switcher__headline {
        font-size: var(--font-size-lg);
    }
    .tag-solution-switcher__rail {
        max-width: 54%;
    }
    .tag-solution-switcher {
        gap: 38px;
    }
    .tag-solution-switcher__point {
        gap: 16px;
    }
    .tag-solution-switcher__point-icon {
        width: 50px;
        height: 50px;
    }
    .tag-solution-switcher__point-icon img {
        max-width: 22px;
        max-height: 22px;
    }
}

@media (max-width: 1023px) {
    #hero-section {
        padding: 120px 0 0;
        text-align: center;
    }
    .tag-unified-section {
        padding: 30px 0 60px;
    }
    .tag-hero-section,
    .tag-problem-section,
    .tag-solution-section,
    .tag-deployment-section,
    .tag-cta-section {
        padding: 60px 0;
    }
    .tag-hero__title {
        font-size: var(--font-size-4xl);
    }
    .tag-hero__title--logo img {
        width: 180px;
    }
    .tag-hero__boxes {
        flex-direction: column;
    }
    .tag-problem__cards {
        /* cards stack 1-up here — no row to align across */
        grid-template-columns: 1fr;
    }
    .tag-problem-section .ti-card {
        min-height: auto;
    }
    .tag-problem__header .intro-text,
    .tag-problem__warning strong {
        font-size: var(--font-size-base);
    }
    .tag-solution__highlights {
        padding: 19px 24px;
    }
    .tag-solution-switcher {
        position: relative;
        flex-direction: column;
        gap: 16px;
    }
    .tag-solution-switcher::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 24px;
        bottom: 36px;
        width: 1px;
        background: rgba(35, 31, 31, 0.2);
        z-index: 0;
    }
    .tag-solution-switcher__rail,
    .tag-solution-switcher__panels {
        display: contents;
    }
    .tag-solution-switcher__tab:nth-child(1) { order: 1; }
    .tag-solution-switcher__panel:nth-child(1) { order: 2; margin-bottom: 12px; }
    .tag-solution-switcher__tab:nth-child(2) { order: 3; }
    .tag-solution-switcher__panel:nth-child(2) { order: 4; margin-bottom: 12px; }
    .tag-solution-switcher__tab:nth-child(3) { order: 5; }
    .tag-solution-switcher__panel:nth-child(3) { order: 6; margin-bottom: 12px; }
    .tag-solution-switcher__tab:nth-child(4) { order: 7; }
    .tag-solution-switcher__panel:nth-child(4) { order: 8; margin-bottom: 12px; }
    .tag-solution-switcher__tab:nth-child(5) { order: 9; }
    .tag-solution-switcher__panel:nth-child(5) { order: 10; margin-bottom: 12px; }
    .tag-solution-switcher__tab:nth-child(6) { order: 11; }
    .tag-solution-switcher__panel:nth-child(6) { order: 12; margin-bottom: 12px; }
    .tag-solution-switcher__tab:nth-child(7) { order: 13; }
    .tag-solution-switcher__panel:nth-child(7) { order: 14; margin-bottom: 12px; }
    .tag-solution-switcher__rail::before {
        display: none;
    }
    .tag-solution-switcher:has(.tag-solution-switcher__tab:last-child.is-active)::before {
        bottom: auto;
        height: var(--_last-tab-line-height, calc(100% - 60px));
    }
    .tag-solution-switcher__tab {
        min-height: 52px;
        font-size: 20px;
        gap: 14px;
    }
    .tag-solution-switcher__tab-header {
        min-height: 36px;
        padding-left: 56px;
    }
    .tag-solution-switcher__tab-content {
        padding-left: 56px;
    }
    .tag-solution-switcher__dot {
        width: 10px;
        height: 10px;
    }
    .tag-solution-switcher__tab.is-active .tag-solution-switcher__dot {
        top: 50%;
        left: 8px;
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    .tag-solution-switcher__dot-icon,
    .tag-solution-switcher__dot-icon-fallback {
        width: 18px;
        height: 18px;
    }
    .tag-solution-switcher__panel {
        padding-left: 53px;
    }
    .tag-solution-switcher__point-title,
    .tag-solution-switcher__point-desc,
    .tag-solution-switcher__summary {
        font-size: var(--font-size-base);
    }
    .tag-deployment__header {
        margin-bottom: 44px;
    }
    .tag-deployment__cards {
        max-width: 100%;
    }
    .tag-cta__workshop {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .tag-problem__warning-wrap {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    #hero-section {
        padding: 90px 0 0;
    }
    .tag-unified-section {
        padding: 20px 0 50px;
    }
    .tag-hero__title + .ti-link-gradient {
        margin-bottom: 16px;
        font-size: var(--font-size-md);
    }
    .tag-unified-section .ti-card {
        padding: 24px 18px 28px 24px;
    }
    .tag-unified-section .ti-card .title-wrapper {
        gap: 16px;
        margin-bottom: 10px;
    }
    .tag-hero__box-icon {
        width: 40px;
        height: 40px;
    }
    .tag-hero__box-title {
        font-size: var(--font-size-xl);
    }
    .tag-hero__box-list {
        font-size: var(--font-size-base);
    }

    .tag-hero-section, .tag-problem-section, .tag-solution-section, .tag-deployment-section, .tag-cta-section {
        padding: 50px 0;
    }
    .tag-solution__highlights {
        margin-bottom: 40px;
    }
    .tag-solution__highlights p {
        font-size: var(--font-size-md);
    }
    .capabilities-wrapper .capabilities-title {
        margin-bottom: 37px;
    }
    .tag-solution-switcher__tab {
        font-size: 18px;
    }
    .tag-solution-switcher__headline {
        font-size: var(--font-size-md);
    }
    .tag-solution-switcher__point {
        gap: 14px;
    }
    .tag-solution-switcher__point-icon {
        width: 44px;
        height: 44px;
    }
    .tag-solution-switcher__point-icon img {
        width: 20px;
        height: 20px;
    }
    .tag-solution-switcher__point-icon-fallback {
        width: 26px;
        height: 26px;
    }
    .tag-solution-switcher {
        margin-left: -14px;
    }
    .tag-solution-switcher__tab-title {
        font-size: var(--font-size-lg);
    }
    .tag-deployment__card {
        gap: 16px;
        padding: 24px 22px 24px 28px;
    }
    .tag-deployment__card-top {
        gap: 10px;
    }
    .tag-deployment__card .ti-eyebrow {
        padding: 4px 12px;
    }
    .tag-deployment__card-title {
        font-size: var(--font-size-lg);
    }
    .tag-deployment__best-for {
        gap: 10px;
        padding: 16px 14px 20px;
    }
    .tag-deployment__best-for-icon svg {
        max-width: 22px;
    }
    .tag-deployment__best-for-text strong {
        margin-bottom: 5px;
    }
    .tag-cta__header .section-title {
        font-size: var(--font-size-3xl);
    }
    .tag-cta__header .intro-text {
        font-size: var(--font-size-base);
    }
    .tag-cta__workshop .title-wrapper {
        gap: 12px;
        margin-bottom: 0;
    }
    .tag-cta__workshop-title {
        font-size: var(--font-size-lg);
    }
    .tag-cta__workshop-action {
        margin-bottom: 10px;
    }
}


