/* ===================================================================
   SERVICES ONE-PAGER — Consolidated services page styles
   Same brand effects (glitch, code scroll, dot-grid, ASCII) applied
   in UNIQUE structural contexts: horizontal scroll cards, security grid,
   timeline, split disciplines.
   =================================================================== */

/* ── Eyebrow variant classes (shared brand tokens) ── */
.tr-eyebrow--indigo {
    color: var(--mv-color-indigo);
    background: var(--tr-lav-soft);
}
.tr-eyebrow--celadon {
    color: var(--mv-color-evergreen);
    background: var(--tr-cel-soft);
}
.tr-eyebrow--lime {
    color: var(--mv-color-lime);
    background: var(--tr-lime-border);
}

/* ── Section 1: Dual-column Hero ── */
.tr-services-hero {
    padding: 140px 0 100px;
    background: var(--mv-color-ivory);
}
.tr-services-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
}
.tr-services-hero__copy {
}
.tr-services-hero__copy .mv-eyebrow {
    margin-bottom: 20px;
}
.tr-services-hero__copy .tr-h1 {
    margin-bottom: 24px;
}
.tr-services-hero__sub {
    color: var(--tr-text-tertiary);
    margin-bottom: 36px;
}
.tr-services-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* Stroke button on ivory: dark text, indigo hover accent.
   Filled button keeps default lime accent (good contrast on dark bg). */
.tr-services-hero__actions .mv-ascii-btn--stroke {
    --ascii-color: var(--mv-color-evergreen);
    --ascii-accent: var(--mv-color-indigo);
}
.tr-services-hero__media {
    position: relative;
    background: var(--tr-cel-subtle);
    border-radius: 20px;
    border: 1px solid var(--tr-ev-subtle);
    box-shadow: 0 4px 24px var(--tr-ev-subtle);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.tr-services-hero__video {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.tr-services-hero__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}
.tr-services-hero__ascii {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}

/* ── Section 2: Floating Pill Section Nav ── */
.tr-section-nav {
    position: sticky;
    top: calc(var(--mv-header-top) + var(--mv-header-height) + 12px);
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 32px;
    pointer-events: none;
}
.tr-section-nav__inner {
    display: flex;
    gap: 4px;
    padding: 6px 10px;
    background: var(--tr-iv-mid);
    backdrop-filter: blur(18px) saturate(200%);
    -webkit-backdrop-filter: blur(18px) saturate(200%);
    border-radius: var(--tr-radius-md);
    box-shadow: 0 2px 24px var(--tr-ev-muted);
    border: 1px solid var(--tr-ev-border);
    pointer-events: auto;
    overflow-x: auto;
    scrollbar-width: none;
}
.tr-section-nav__inner::-webkit-scrollbar { display: none; }
.tr-section-nav a {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--tr-radius-sm);
    font-family: var(--tr-font-body);
    font-size: var(--tr-size-body-md);
    font-weight: 500;
    color: var(--tr-text-tertiary);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}
.tr-section-nav a:hover {
    color: var(--mv-color-evergreen);
    background: var(--tr-ev-wash);
}
.tr-section-nav a.active,
.tr-section-nav a[aria-current="true"] {
    color: var(--mv-color-evergreen);
    background: var(--tr-ev-subtle);
    font-weight: var(--tr-weight-heading);
}

/* ── Section 3: Horizontal Scroll Cards ── */
.tr-cards-section {
    position: relative;
    background: var(--mv-color-ivory);
    padding: var(--tr-space-section-lg) 0 0;
    overflow-x: clip;
}
.tr-cards-sticky {
    position: sticky;
    top: calc(var(--mv-header-top) + var(--mv-header-height) + 70px);
    padding: 24px 0 80px;
}
/* Clip boundary matches header: same gutter var, same max-width.
   Header uses width:calc(100% - gutter*2); max-width:1420px — we mirror that. */
.tr-cards-viewport {
    width: calc(100% - var(--mv-header-gutter, 24px) * 2);
    max-width: 1420px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}
.tr-cards-track {
    display: inline-flex;
    gap: 24px;
    will-change: transform;
}
.tr-service-card {
    flex: 0 0 480px;
    box-sizing: border-box;
    padding: 48px 40px;
    border-radius: 16px;
    border: 1px solid var(--tr-ev-subtle);
    position: relative;
    overflow: hidden;
}

/* Card 1: Managed IT — lavender wash */
.tr-service-card--managed-it {
    background: var(--tr-cel-border);
}

/* Card 2: Security — celadon wash */
.tr-service-card--security { background: var(--tr-lav-border); }

/* Card 3: Documentation — dark purple */
.tr-service-card--docs {
    background: var(--mv-color-celadon);
    border-color: transparent;
}
.tr-service-card--docs .tr-service-card__number { color: rgba(13, 44, 17, 0.08); }
.tr-service-card--docs .tr-service-card__title { color: var(--mv-color-evergreen); }
.tr-service-card--docs .tr-service-card__body { color: var(--tr-text-tertiary); }
.tr-service-card--docs .tr-service-card__outcomes li {
    color: var(--tr-ev-strong);
    border-bottom-color: rgba(13, 44, 17, 0.10);
}
.tr-service-card--docs .tr-service-card__outcomes li::before { color: var(--mv-color-lime); }
.tr-service-card--docs .tr-service-card__link { color: var(--tr-text-tertiary); }
.tr-service-card--docs .tr-service-card__link:hover { color: var(--mv-color-evergreen); }

/* Card 4: Support — dark purple */
.tr-service-card--support {
    background: var(--mv-color-indigo);
    border-color: transparent;
}
.tr-service-card--support::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mv-dot-grid);
    background-size: var(--mv-dot-grid-size);
    opacity: 0.15;
    pointer-events: none;
    border-radius: inherit;
}
.tr-service-card--support .tr-service-card__number { color: rgba(206, 202, 226, 0.15); }
.tr-service-card--support .tr-service-card__title { color: var(--mv-color-ivory); }
.tr-service-card--support .tr-service-card__body { color: var(--tr-light-secondary); }
.tr-service-card--support .tr-service-card__outcomes li {
    color: var(--tr-iv-strong);
    border-bottom-color: var(--tr-iv-subtle);
}
.tr-service-card--support .tr-service-card__outcomes li::before { color: var(--mv-color-lime); }
.tr-service-card--support .tr-service-card__link { color: var(--tr-light-secondary); }
.tr-service-card--support .tr-service-card__link { position: relative; z-index: 1; }
.tr-service-card--support .tr-service-card__link:hover { color: var(--mv-color-lavender); }
.tr-service-card--support .tr-service-card__title,
.tr-service-card--support .tr-service-card__body,
.tr-service-card--support .tr-service-card__outcomes { position: relative; z-index: 1; }

/* Card 5: Automation — darkest evergreen, redirect to Techrobotic */
.tr-service-card--automation {
    background: var(--mv-color-evergreen);
    border-color: transparent;
}
.tr-service-card--automation::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mv-dot-grid);
    background-size: var(--mv-dot-grid-size);
    opacity: 0.35;
    pointer-events: none;
    border-radius: inherit;
}
.tr-service-card--automation .tr-service-card__number { color: rgba(58, 205, 72, 0.15); }
.tr-service-card--automation .tr-service-card__title { color: var(--mv-color-ivory); }
.tr-service-card--automation .tr-service-card__body { color: var(--tr-light-secondary); }
.tr-service-card--automation .tr-service-card__outcomes li {
    color: var(--tr-iv-strong);
    border-bottom-color: var(--tr-iv-subtle);
}
.tr-service-card--automation .tr-service-card__outcomes li::before { color: var(--mv-color-lime); }
.tr-service-card--automation .tr-service-card__link { color: var(--tr-light-secondary); position: relative; z-index: 1; }
.tr-service-card--automation .tr-service-card__link:hover { color: var(--mv-color-lime); }
.tr-service-card--automation .tr-service-card__title,
.tr-service-card--automation .tr-service-card__body,
.tr-service-card--automation .tr-service-card__outcomes { position: relative; z-index: 1; }

/* ── Automation redirect section ── */
.tr-automation-redirect {
    padding: var(--tr-space-section-md) 0 0;
}
.tr-automation-redirect__inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
}
.tr-automation-redirect__box {
    padding: 48px 56px;
    background: linear-gradient(135deg, var(--tr-cel-soft) 0%, var(--tr-cel-mid) 100%);
    border: 1px solid var(--tr-cel-strong);
    border-radius: var(--tr-radius-md);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.tr-automation-redirect__field {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}
.tr-automation-redirect__content {
    flex: 1;
    position: relative;
    z-index: 1;
}
.tr-automation-redirect__eyebrow {
    display: block;
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-body-sm);
    font-weight: var(--tr-weight-heading);
    letter-spacing: var(--tr-tracking-wide);
    color: var(--mv-color-evergreen);
    margin-bottom: 12px;
}
.tr-automation-redirect__headline {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-h3);
    font-weight: var(--tr-weight-heading);
    letter-spacing: var(--tr-tracking-h3);
    line-height: var(--tr-leading-h3);
    color: var(--mv-color-evergreen);
    margin: 0 0 12px;
}
.tr-automation-redirect__body {
    font-family: var(--tr-font-body);
    font-size: var(--tr-size-body);
    line-height: var(--tr-leading-body);
    color: var(--tr-text-tertiary);
    margin: 0;
    max-width: 620px;
}
.tr-automation-redirect__body strong {
    color: var(--mv-color-evergreen);
    font-weight: var(--tr-weight-bold);
}
.tr-automation-redirect__action {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
/* Remove divider between automation redirect and FAQ */
.tr-automation-redirect + .tr-scenarios-section {
    border-top: none;
}

@media (max-width: 768px) {
    .tr-automation-redirect__box {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding: 36px 28px;
        gap: 24px;
    }
}

/* Card shared elements */
.tr-service-card__number {
    position: absolute;
    top: 28px;
    left: 32px;
    font-family: var(--tr-font-display);
    font-size: clamp(70px, 9vw, 100px);
    font-weight: var(--tr-weight-bold);
    color: rgba(13, 44, 17, 0.08);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    margin: 0;
}
.tr-service-card__title {
    position: relative;
    z-index: 1;
    margin-top: 48px;
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-h3);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-evergreen);
    line-height: var(--tr-leading-h4);
    margin-bottom: 8px;
}
.tr-service-card__body {
    font-family: var(--tr-font-body);
    font-size: var(--tr-size-body);
    color: var(--tr-text-tertiary);
    line-height: var(--tr-leading-body);
    margin-bottom: 20px;
}
.tr-service-card__outcomes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.tr-service-card__outcomes li {
    padding: 8px 0;
    border-bottom: 1px solid var(--tr-ev-subtle);
    font-size: var(--tr-size-body-sm);
    color: var(--tr-text-tertiary);
}
.tr-service-card__outcomes li::before {
    content: '\2713  ';
    color: var(--mv-color-lime);
    font-weight: var(--tr-weight-heading);
}
.tr-service-card__link {
    font-family: var(--tr-font-body);
    font-size: var(--tr-size-body-sm);
    color: var(--tr-text-tertiary);
    text-decoration: none;
    transition: color 0.2s;
}
.tr-service-card__link:hover {
    color: var(--mv-color-indigo);
}

/* ── Glitch keyframes — brand effect, used on threat stats ── */
@keyframes trStatsGlitch1 {
    0%,  88%, 100% { clip-path: inset(0 0 100% 0); transform: translateX(0); }
    90%  { clip-path: inset(8%  0 58% 0); transform: translateX(-5px); }
    92%  { clip-path: inset(52% 0 22% 0); transform: translateX( 5px); }
    95%  { clip-path: inset(30% 0 48% 0); transform: translateX(-3px); }
    97%  { clip-path: inset(72% 0 6%  0); transform: translateX( 4px); }
}
@keyframes trStatsGlitch2 {
    0%,  84%, 100% { clip-path: inset(0 0 100% 0); transform: translateX(0); }
    86%  { clip-path: inset(22% 0 48% 0); transform: translateX( 4px); }
    89%  { clip-path: inset(60% 0 14% 0); transform: translateX(-4px); }
    93%  { clip-path: inset(40% 0 36% 0); transform: translateX( 2px); }
    96%  { clip-path: inset(15% 0 65% 0); transform: translateX(-3px); }
}

/* ── Section 4: Threat Stats — Indigo Velvet bg ── */
.tr-threat-stats {
    background: var(--mv-color-indigo);
    padding: var(--tr-space-section-md) 0;
    position: relative;
    overflow: hidden;
}
.tr-threat-stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mv-dot-grid);
    background-size: var(--mv-dot-grid-size);
    opacity: 0.20;
    pointer-events: none;
}
.tr-threat-stats__inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.tr-threat-stats__header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 0;
}
.tr-threat-stats__headline {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-h4);
    font-weight: var(--tr-weight-heading);
    letter-spacing: var(--tr-tracking-h4);
    line-height: var(--tr-leading-h4);
    color: var(--mv-color-ivory);
    max-width: 640px;
    margin: 16px auto 0;
}
.tr-threat-stat__value {
    display: block;
    font-family: var(--tr-font-display);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: var(--tr-weight-bold);
    color: var(--mv-color-ivory);
    line-height: var(--tr-leading-display);
    margin-bottom: 4px;
    position: relative;
}
/* Glitch layers — Lime + Celadon channels on indigo */
.tr-threat-stat__value::before,
.tr-threat-stat__value::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-family: var(--tr-font-display);
    font-size: inherit;
    font-weight: var(--tr-weight-bold);
    line-height: var(--tr-leading-display);
    text-align: center;
    pointer-events: none;
}
.tr-threat-stat__value::before { color: var(--mv-color-lime); }
.tr-threat-stat__value::after { color: var(--tr-cel-strong); }
@media (prefers-reduced-motion: no-preference) {
    .tr-threat-stat__value::before { animation: trStatsGlitch1 3s infinite; }
    .tr-threat-stat__value::after  { animation: trStatsGlitch2 3s infinite; }
}
.tr-threat-stat__bar {
    width: 0;
    height: 3px;
    background: var(--mv-color-lime);
    margin: 8px auto 16px;
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
    max-width: 200px;
}
.tr-threat-stat__label {
    display: block;
    font-family: var(--tr-font-body);
    font-size: var(--tr-size-body-sm);
    color: var(--tr-light-secondary);
    line-height: var(--tr-leading-body);
}

/* ── Section 5: Feature Grid (2x3, Managed IT) — full-border cards ── */
.tr-feature-section {
    padding: var(--tr-space-section-lg) 0;
    background: var(--mv-color-ivory);
    position: relative;
}
.tr-feature-section__header {
    max-width: 1420px;
    margin: 0 auto 48px;
    padding: 0 32px;
}
.tr-feature-section__header .mv-eyebrow {
    margin-bottom: 16px;
}
.tr-feature-section__header .tr-h2 {
    margin-bottom: 16px;
}
.tr-feature-section__sub {
    color: var(--tr-text-tertiary);
    max-width: 640px;
}
.tr-feature-section .tr-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
}
.tr-feature-cell {
    padding: 28px 24px;
    border: 1px solid var(--tr-ev-subtle);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tr-feature-cell::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(58, 205, 72, 0.10), rgba(58, 205, 72, 0.02));
    pointer-events: none;
    border-radius: 12px 12px 0 0;
    z-index: 0;
    transition: height 0.3s ease;
}
.tr-feature-cell:hover {
    border-color: rgba(58, 205, 72, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    translate: 0 -4px;
}
.tr-feature-cell:hover::before {
    height: 100%;
}
.tr-feature-cell__prefix {
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-label);
    font-weight: var(--tr-weight-heading);
    letter-spacing: var(--tr-tracking-wide);
    color: var(--tr-text-tertiary);
    margin-bottom: 12px;
    display: block;
}
.tr-feature-cell__title {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-h5);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-evergreen);
    margin-top: 0;
    margin-bottom: 8px;
}
.tr-feature-cell__body {
    font-family: var(--tr-font-body);
    font-size: var(--tr-size-body-sm);
    color: var(--tr-text-tertiary);
    line-height: var(--tr-leading-body);
}

/* ── Section 6: Security — 2x2 Grid (all visible, no tabs) ── */
.tr-security-section {
    background: var(--mv-color-evergreen);
    padding: var(--tr-space-section-lg) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--mv-hairline);
}
.tr-security-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mv-dot-grid);
    background-size: var(--mv-dot-grid-size);
    opacity: 0.35;
    pointer-events: none;
}
.tr-security-section__inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}
.tr-security-section__header {
    margin-bottom: 56px;
}
.tr-security-section__header .tr-h2 {
    color: var(--mv-color-ivory);
    margin-bottom: 16px;
}
.tr-security-section__sub {
    color: var(--tr-light-secondary);
    max-width: 640px;
}
/* Bento grid: 6-col subgrid — row 1 = 50/50, row 2 = thirds */
.tr-security-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
/* Base card */
.tr-security-card {
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid var(--tr-iv-subtle);
    background: var(--tr-iv-wash);
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Row 1: EP card + video, each 50% (3 of 6 cols) */
.tr-security-bento > .tr-security-card:first-child {
    grid-column: 1 / 4;
    grid-row: 1;
}
/* Row 2: bottom 3 cards, each 1/3 (2 of 6 cols) */
.tr-security-bento > .tr-security-card:nth-child(3) { grid-column: 1 / 3; }
.tr-security-bento > .tr-security-card:nth-child(4) { grid-column: 3 / 5; }
.tr-security-bento > .tr-security-card:nth-child(5) { grid-column: 5 / 7; }
/* Video cell — row 1, right 50% */
.tr-security-video {
    grid-column: 4 / 7;
    grid-row: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    border: 1px solid var(--tr-lime-border);
    background: #0a1f0d;
}
.tr-security-video__src {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
}
.tr-security-video__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
/* Exposure vignette — darker edges, brighter center */
.tr-security-video::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse 70% 65% at 50% 50%,
        rgba(255,255,255,0.08) 0%,
        transparent 40%,
        rgba(0,0,0,0.50) 100%);
}
/* ASCII vignette canvas — distance-from-center chars, sits above ::after */
.tr-security-video__ascii {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}

/* Override parent stagger transition after entrance so hover is smooth */
.tr-security-bento.is-visible .tr-security-card[data-animate-child] {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, translate 0.3s ease, background 0.3s ease;
}

/* Hero card — left side of row 1 */
.tr-security-card--hero {
    grid-column: 1 / 4;
    grid-row: 1;
    position: relative;
    padding: 44px 40px 40px;
    background: linear-gradient(135deg, var(--tr-lime-subtle) 0%, var(--tr-iv-wash) 50%, var(--tr-lime-wash) 100%);
    border-color: var(--tr-lime-muted);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.tr-security-card--hero .tr-security-card__number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: clamp(80px, 10vw, 120px);
    color: var(--tr-lime-border);
    line-height: var(--tr-leading-display);
    pointer-events: none;
    z-index: 0;
}
.tr-security-card--hero .tr-security-card__title {
    font-size: var(--tr-size-h3);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.tr-security-card--hero .tr-security-card__tagline {
    display: block;
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-label);
    color: var(--mv-color-lime);
    letter-spacing: var(--tr-tracking-caps-sm);
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.tr-security-card--hero .tr-security-card__body {
    max-width: none;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}
.tr-security-card--hero .tr-security-card__outcomes {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--tr-iv-subtle);
    padding-top: 20px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}
.tr-security-card--hero .tr-security-card__outcomes li {
    padding: 5px 0;
}
.tr-security-card--hero[data-animate-child]:hover {
    border-color: var(--tr-lime-soft);
    background: linear-gradient(135deg, var(--tr-lime-border) 0%, var(--tr-iv-wash) 50%, var(--tr-lime-subtle) 100%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.30), 0 0 24px var(--tr-lime-border) inset;
    translate: 0 -4px;
}

/* 2×3 layout: children flow naturally into 2-col grid */
/* Ivory cards — 02, 03, 04 */
.tr-security-card--ivory {
    display: flex;
    flex-direction: column;
    background: rgba(7, 26, 9, 0.75);
    border-color: rgba(251, 252, 239, 0.09);
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, translate 0.3s ease;
}
/* Lime wash overlay — height animates on hover */
.tr-security-card--ivory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(58, 205, 72, 0.10), rgba(58, 205, 72, 0.02));
    pointer-events: none;
    border-radius: 16px 16px 0 0;
    z-index: 0;
    transition: height 0.3s ease;
}
.tr-security-card--ivory[data-animate-child]:hover {
    border-color: rgba(251, 252, 239, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    translate: 0 -4px;
}
.tr-security-card--ivory[data-animate-child]:hover::before {
    height: 100%;
}
.tr-security-card--ivory .tr-security-card__number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: clamp(60px, 8vw, 90px);
    color: rgba(58, 205, 72, 0.15);
    line-height: var(--tr-leading-display);
    pointer-events: none;
    z-index: 0;
    margin-bottom: 0;
}
.tr-security-card--ivory .tr-security-card__title {
    color: var(--mv-color-ivory);
    margin-top: 56px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.tr-security-card--ivory .tr-security-card__body {
    color: var(--tr-iv-strong);
    margin-bottom: 0;
    position: relative;
    flex-grow: 1;
    z-index: 1;
}
/* Hairline separator before outcomes */
.tr-security-card--ivory .tr-security-card__outcomes {
    border-top: 1px solid rgba(251, 252, 239, 0.12);
    margin-top: 28px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}
.tr-security-card--ivory .tr-security-card__outcomes li {
    color: var(--tr-iv-strong);
    font-weight: 500;
    padding: 6px 0;
}
.tr-security-card--ivory .tr-security-card__outcomes li::before {
    color: var(--mv-color-lime);
}

/* Per-card accent colors — retained for potential future use */
.tr-security-card--indigo { --card-accent: var(--mv-color-lime); }
.tr-security-card--celadon { --card-accent: var(--mv-color-lime); }
.tr-security-card--lavender { --card-accent: var(--mv-color-lime); }
/* Default (dark card) text colors */
.tr-security-card__number {
    font-family: var(--tr-font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: var(--tr-weight-bold);
    color: var(--tr-lime-border);
    line-height: var(--tr-leading-display);
    margin-bottom: 12px;
}
.tr-security-card__tagline {
    display: none;
}
.tr-security-card__title {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-h4);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-ivory);
    margin-bottom: 8px;
}
.tr-security-card__body {
    font-size: var(--tr-size-body-sm);
    color: var(--tr-light-secondary);
    line-height: var(--tr-leading-body);
    margin-bottom: 20px;
}
.tr-security-card__outcomes {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tr-security-card__outcomes li {
    font-size: var(--tr-size-body-sm);
    color: var(--tr-iv-mid);
    padding: 5px 0;
}
.tr-security-card__outcomes li::before {
    content: '\2192  ';
    color: var(--mv-color-lime);
}

/* ── Section 7A: Documentation ── */
.tr-docs-section {
    padding: var(--tr-space-section-lg) 0;
    background: var(--mv-color-ivory);
    border-top: 1px solid var(--tr-ev-subtle);
}
.tr-docs-section__inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
}
.tr-docs-section__header {
    text-align: center;
    margin-bottom: 56px;
}
.tr-docs-section__header .mv-eyebrow {
    margin-bottom: 16px;
}
.tr-docs-section__header .tr-h2 {
    max-width: 680px;
    margin: 0 auto 16px;
}
.tr-docs-section__header .tr-body-lg {
    max-width: 620px;
    margin: 0 auto;
}

/* 5-card grid — 3 top, 2 bottom centered via 6-col trick */
.tr-docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tr-docs-card {
    padding: 36px 28px 32px;
    border-radius: 14px;
    border: 1px solid var(--tr-ev-subtle);
    background: transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, translate 0.3s ease;
    position: relative;
    overflow: hidden;
}
.tr-docs-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(160, 148, 200, 0.15), rgba(160, 148, 200, 0.03));
    pointer-events: none;
    border-radius: 14px 14px 0 0;
    z-index: 0;
    transition: height 0.3s ease;
}
.tr-docs-card:hover {
    border-color: rgba(160, 148, 200, 0.45);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    translate: 0 -4px;
}
.tr-docs-card:hover::after {
    height: 100%;
}

.tr-docs-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--tr-ind-subtle);
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-body-lg);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-indigo);
    margin-bottom: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}
.tr-docs-card:hover .tr-docs-card__icon {
    background: var(--tr-ind-border);
    color: var(--mv-color-indigo);
}

.tr-docs-card__title {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-body-lg);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-evergreen);
    margin-bottom: 8px;
    letter-spacing: var(--tr-tracking-h6);
}

.tr-docs-card__body {
    font-size: var(--tr-size-body-sm);
    line-height: var(--tr-leading-body);
    color: var(--tr-text-tertiary);
}

/* ── Section: Support — "The Engineer Model" ──
   Mirrors the homepage pillars pattern exactly:
   tall outer section → entire grid sticky → image LEFT (col 1), content RIGHT (col 2).
   Ivory bg, hairline dividers top + bottom.
   ──────────────────────────────────────────────── */
.tr-support-section {
    position: relative;
    background: var(--mv-color-ivory);
    border-top: 1px solid var(--mv-hairline);
    border-bottom: 1px solid var(--mv-hairline);
}

/* 2-col grid: [50% sticky image] [50% flowing content]
   Gap absorbed into content panel padding-left so the image takes exactly half the screen. */
.tr-support__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* LEFT: Sticky full-bleed image panel (col 1) — stays in viewport while content scrolls.
   align-self: start prevents the grid from stretching this cell to match the right column's height,
   which is required for position: sticky to work inside a CSS Grid. */
.tr-support__media {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    overflow: hidden;
    background: var(--mv-color-evergreen);
}
/* Source video: hidden — frames are extracted and drawn to canvas */
.tr-support__video {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
/* Frame canvas: visible display surface for scroll-driven video */
.tr-support__frame-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}
/* Fallback gradient — always visible behind canvas */
.tr-support__media-fallback {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, var(--tr-lime-subtle) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, var(--tr-cel-subtle) 0%, transparent 50%),
        linear-gradient(160deg, #0A1F0D 0%, var(--mv-color-evergreen) 50%, #0A1F0D 100%);
    z-index: 0;
}

/* RIGHT: flowing content panel (col 2) — content scrolls naturally, image stays sticky */
.tr-support__right {
    grid-column: 2;
    grid-row: 1;
    background: var(--mv-color-ivory);
    padding-top: calc(var(--mv-header-top) + var(--mv-header-height) + 40px);
    padding-bottom: 56px;
    padding-left: 80px;
    padding-right: max(var(--mv-header-gutter), calc((100vw - 1420px) / 2));
}

/* Header block — no bottom border, tighter spacing */
.tr-support__block--header {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 48px !important;
}
.tr-support__block--header .mv-eyebrow {
    margin-bottom: 16px;
}
.tr-support__block--header .tr-h2 {
    color: var(--mv-color-evergreen);
    margin-bottom: 20px;
}
.tr-support__subtitle {
    font-size: var(--tr-size-body-lg);
    line-height: var(--tr-leading-body);
    color: var(--tr-text-tertiary);
}

/* Content blocks */
.tr-support__block {
    padding-bottom: 56px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--mv-hairline);
}
.tr-support__block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Block labels — monospace comment style */
.tr-support__block-label {
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-label);
    font-weight: var(--tr-weight-heading);
    letter-spacing: var(--tr-tracking-wide);
    color: var(--tr-text-tertiary);
    margin-bottom: 16px;
}

/* Block intro text */
.tr-support__block-intro {
    font-size: var(--tr-size-body-lg);
    line-height: var(--tr-leading-body);
    color: var(--tr-text-tertiary);
    margin-bottom: 32px;
}

/* Differentiator rows */
.tr-support__diff {
    padding: 20px 0;
    border-bottom: 1px solid var(--tr-ev-subtle);
    transition: border-color 0.3s ease;
}
.tr-support__diff:first-of-type {
    padding-top: 0;
}
.tr-support__diff:last-of-type {
    border-bottom: none;
}
.tr-support__diff:hover {
    border-bottom-color: var(--tr-ind-border);
}
.tr-support__diff-title {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-body-lg);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-evergreen);
    margin-bottom: 6px;
    padding-left: 20px;
    border-left: 2px solid var(--tr-ev-border);
    transition: border-color 0.3s ease;
}
.tr-support__diff:hover .tr-support__diff-title {
    border-left-color: var(--mv-color-indigo);
}
.tr-support__diff-body {
    font-size: var(--tr-size-body-sm);
    line-height: var(--tr-leading-body);
    color: var(--tr-text-tertiary);
    padding-left: 20px;
}

/* SLA tiers */
.tr-support__sla-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--tr-ev-wash);
    border: 1px solid var(--tr-ev-subtle);
    border-radius: 14px;
    overflow: hidden;
}
.tr-support__sla-tier {
    display: grid;
    grid-template-columns: 140px 1fr max-content;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--tr-ev-subtle);
    transition: background 0.2s ease;
}
.tr-support__sla-tier:last-child {
    border-bottom: none;
}
.tr-support__sla-tier:hover {
    background: var(--tr-ev-wash);
}
.tr-support__sla-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* SLA gradient — lime → indigo → evergreen, spans all 4 tiers */
.tr-support__sla-stack {
    --sla-grad: linear-gradient(to bottom, #3ACD48 0%, #3D3172 100%);
}

.tr-support__sla-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--sla-grad);
    background-size: 100% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-xs);
    font-weight: var(--tr-weight-bold);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 0;
}
/* Badge background fill — same gradient, low opacity */
.tr-support__sla-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--sla-grad);
    background-size: 100% 400%;
    opacity: 0.10;
    z-index: -1;
}

/* Position each tier within the continuous gradient */
.tr-support__sla-tier--p1 .tr-support__sla-badge,
.tr-support__sla-tier--p1 .tr-support__sla-time { background-position: 0 0%; }
.tr-support__sla-tier--p1 .tr-support__sla-badge::before { background-position: 0 0%; }

.tr-support__sla-tier--p2 .tr-support__sla-badge,
.tr-support__sla-tier--p2 .tr-support__sla-time { background-position: 0 33.3%; }
.tr-support__sla-tier--p2 .tr-support__sla-badge::before { background-position: 0 33.3%; }

.tr-support__sla-tier--p3 .tr-support__sla-badge,
.tr-support__sla-tier--p3 .tr-support__sla-time { background-position: 0 66.6%; }
.tr-support__sla-tier--p3 .tr-support__sla-badge::before { background-position: 0 66.6%; }

.tr-support__sla-tier--p4 .tr-support__sla-badge,
.tr-support__sla-tier--p4 .tr-support__sla-time { background-position: 0 100%; }
.tr-support__sla-tier--p4 .tr-support__sla-badge::before { background-position: 0 100%; }
.tr-support__sla-label {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-body-sm);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-evergreen);
}
.tr-support__sla-desc {
    font-size: var(--tr-size-body-sm);
    color: var(--tr-text-tertiary);
}
.tr-support__sla-time {
    font-family: var(--tr-font-mono);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: var(--tr-weight-bold);
    background: var(--sla-grad);
    background-size: 100% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: var(--tr-tracking-h4);
    white-space: nowrap;
    text-align: right;
}
.tr-support__sla-note {
    margin-top: 16px;
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-sm);
    color: var(--tr-text-tertiary);
    letter-spacing: 0.02em;
}

/* Comparison rows — them vs us stacked per row */
.tr-support__vs-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid var(--tr-ev-subtle);
}
.tr-support__vs-row:last-child {
    border-bottom: none;
}
.tr-support__vs-them {
    font-size: var(--tr-size-body-sm);
    line-height: var(--tr-leading-body);
    color: rgba(231,76,60,0.65);
    text-decoration: line-through;
    text-decoration-color: rgba(231,76,60,0.30);
}
.tr-support__vs-us {
    font-size: var(--tr-size-body);
    line-height: var(--tr-leading-body);
    color: var(--tr-ev-strong);
    font-weight: 500;
}

/* ── Section 9: Process Timeline (dark, horizontal) ── */
.tr-timeline-section {
    background: var(--mv-color-evergreen);
    padding: var(--tr-space-section-lg) 0;
    position: relative;
    overflow: hidden;
}
.tr-timeline-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mv-dot-grid);
    background-size: var(--mv-dot-grid-size);
    opacity: 0.35;
    pointer-events: none;
}
/* Code scroll motif behind timeline */
.tr-timeline-section__code-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.tr-timeline-section__code-bg .tr-cta-band__code-track {
    animation: trCodeScroll 80s linear infinite;
}
.tr-timeline-section__code-bg .tr-code-block span {
    color: var(--tr-lime-subtle);
}
.tr-timeline-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}
.tr-timeline-section__header {
    text-align: center;
    margin-bottom: 64px;
}
.tr-timeline-section__header .mv-eyebrow {
    margin-bottom: 16px;
}
.tr-timeline-section__header .tr-h2 {
    color: var(--mv-color-ivory);
}

.tr-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    position: relative;
}
/* Connecting line */
.tr-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.666% + 16px);
    right: calc(16.666% + 16px);
    height: 2px;
    background: var(--tr-lime-soft);
}
.tr-timeline-step {
    text-align: center;
    position: relative;
    transition: translate 0.3s ease;
}
.tr-timeline-step:hover {
    translate: 0 -4px;
}
.tr-timeline-step__node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--mv-color-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-body-sm);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-lime);
    margin: 0 auto 24px;
    background: var(--mv-color-evergreen);
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.tr-timeline-step:hover .tr-timeline-step__node {
    background: var(--mv-color-lime);
    color: var(--mv-color-evergreen);
    box-shadow: 0 0 24px var(--tr-lime-soft);
}
.tr-timeline-step__title {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-h5);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-ivory);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.tr-timeline-step:hover .tr-timeline-step__title {
    color: var(--mv-color-lime);
}
.tr-timeline-step__body {
    font-size: var(--tr-size-body-sm);
    color: var(--tr-light-secondary);
    line-height: var(--tr-leading-body);
    max-width: 280px;
    margin: 0 auto;
    transition: color 0.3s ease;
}
.tr-timeline-step:hover .tr-timeline-step__body {
    color: var(--tr-iv-strong);
}

/* ── Section 10: FAQ (2-column editorial layout) ── */
.tr-faq-section {
    padding: var(--tr-space-section-lg) 0;
    background: var(--tr-lav-wash);
    border-top: 1px solid var(--tr-ev-subtle);
    border-bottom: 1px solid var(--tr-ev-subtle);
}
.tr-faq-section__inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 80px;
    align-items: start;
}

/* Left column — sticky header */
.tr-faq-section__left {
    position: sticky;
    top: 140px;
}
.tr-faq-section__left .mv-eyebrow {
    margin-bottom: 16px;
}
.tr-faq-section__left .tr-h2 {
    margin-bottom: 16px;
}
.tr-faq-section__subtitle {
    font-size: var(--tr-size-body);
    line-height: var(--tr-leading-body);
    color: var(--tr-text-tertiary);
    margin-bottom: 32px;
}
.tr-faq-section__cta.mv-ascii-btn {
    --ascii-accent: var(--mv-color-indigo);
}

/* Right column — accordion */
.tr-faq-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tr-faq-v2__item {
    padding: 28px 0;
    border-bottom: 1px solid var(--tr-ev-subtle);
}
.tr-faq-v2__item:first-child {
    padding-top: 0;
}
.tr-faq-v2__item:last-child {
    border-bottom: none;
}
.tr-faq-v2__q {
    font-family: var(--tr-font-display);
    font-size: var(--tr-size-body-lg);
    font-weight: var(--tr-weight-heading);
    color: var(--mv-color-evergreen);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s ease;
}
.tr-faq-v2__q::-webkit-details-marker { display: none; }
.tr-faq-v2__q::marker { content: ''; }
.tr-faq-v2__q::after {
    content: '+';
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-h6-lg);
    font-weight: 300;
    color: var(--tr-text-decorative);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}
.tr-faq-v2__item[open] .tr-faq-v2__q::after {
    content: '\2212';
    transform: rotate(180deg);
    color: var(--mv-color-indigo);
}
.tr-faq-v2__q:hover {
    color: var(--mv-color-indigo);
}
.tr-faq-v2__a {
    padding-top: 12px;
    font-size: var(--tr-size-body-sm);
    line-height: var(--tr-leading-body);
    color: var(--tr-text-tertiary);
    max-width: 580px;
}
.tr-faq-v2__a p {
    margin: 0;
}

/* ── Section 11: CTA Band (ported from homepage.css) ── */
.tr-cta-band {
    background: var(--mv-color-ivory);
    padding: var(--tr-space-section-xl) 0;
}
.tr-cta-band__wrap {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 32px;
}
.tr-cta-band__inset {
    background: linear-gradient(150deg, #1a4d22 0%, var(--mv-color-evergreen) 50%, #091e0c 100%);
    border-radius: 20px;
    padding: 96px 80px;
    position: relative;
    overflow: hidden;
}
.tr-cta-band__inset::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 65% at 50% 35%, var(--tr-lime-subtle) 0%, transparent 65%);
    pointer-events: none;
    border-radius: inherit;
}
.tr-cta-band__inset::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--mv-dot-grid);
    background-size: var(--mv-dot-grid-size);
    opacity: 0.04;
    pointer-events: none;
    border-radius: inherit;
}
.tr-cta-band__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Standardized inner spacing — match homepage CTA pattern */
.tr-cta-band__inner .mv-eyebrow {
    margin-bottom: 20px;
}
.tr-cta-band__inner .tr-h2 {
    margin: 0 auto 20px;
    max-width: 640px;
}
.tr-cta-band__inner .tr-body-lg {
    margin: 0 auto 36px;
    max-width: 560px;
}
.tr-cta-band__code-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.tr-cta-band__code-track {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0;
    animation: trCodeScroll 60s linear infinite;
}
.tr-code-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 5%;
}
.tr-code-block.--right {
    align-items: flex-end;
    text-align: right;
}
.tr-code-block span {
    display: block;
    font-family: var(--tr-font-mono);
    font-size: var(--tr-size-label);
    line-height: var(--tr-leading-snug);
    color: var(--tr-lime-muted);
    white-space: nowrap;
    letter-spacing: 0.02em;
    user-select: none;
}
@keyframes trCodeScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .tr-cta-band__code-track { animation: none; }
}
.tr-cta-band__btn.mv-ascii-btn {
    --ascii-bg:       var(--mv-color-ivory);
    --ascii-bg-hover: #f0f2e5;
    --ascii-color:    var(--mv-color-evergreen);
    --ascii-accent:   var(--mv-color-indigo);
}

/* ===================================================================
   RESPONSIVE — Tablet (<=1024px)
   =================================================================== */
@media (max-width: 1024px) {
    .tr-services-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }
    .tr-automation-redirect__inner {
        padding: 0 24px;
    }
    .tr-services-hero__media {
        width: 100%;
        aspect-ratio: auto;
        min-height: 340px;
    }
    /* Cards: static vertical layout */
    .tr-cards-section {
        height: auto !important;
        padding: var(--tr-space-section-lg) 0;
    }
    .tr-cards-sticky {
        position: static;
        padding: 0;
    }
    .tr-cards-track {
        display: flex;
        flex-direction: column;
    }
    .tr-service-card {
        flex-basis: auto;
        min-width: 0;
    }
    .tr-feature-section .tr-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tr-security-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .tr-security-bento > * {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
    .tr-security-video {
        min-height: 280px;
    }
    /* Docs: 2 columns on tablet */
    .tr-docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Support: single-column, video scrolls normally, content below */
    .tr-support__grid {
        display: block !important;
    }
    .tr-support__media {
        position: relative !important;
        height: 45vh !important;
        min-height: 280px !important;
    }
    .tr-support__right {
        padding: 80px 32px !important;
    }
    .tr-support__sla-tier {
        grid-template-columns: 140px 1fr max-content;
    }
    /* FAQ: stack columns */
    .tr-faq-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tr-faq-section__left {
        position: static;
    }
    .tr-cta-band__wrap {
        padding: 0 16px;
    }
    .tr-cta-band__inset {
        padding: 60px 28px;
        border-radius: 16px;
    }
}

/* ===================================================================
   RESPONSIVE — Mobile (<=768px)
   =================================================================== */
@media (max-width: 768px) {
    .tr-services-hero {
        padding: 120px 0 64px;
    }
    .tr-services-hero__inner {
        gap: 32px;
        padding: 0 16px;
    }
    .tr-automation-redirect__inner {
        padding: 0 16px;
    }
    .tr-services-hero__actions {
        flex-direction: column;
    }
    .tr-service-card {
        padding: 28px 24px;
    }
    .tr-threat-stats__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .tr-feature-section .tr-feature-grid {
        grid-template-columns: 1fr;
    }
    .tr-security-card {
        padding: 28px 24px;
    }
    .tr-security-card--hero {
        padding: 28px 24px;
    }
    .tr-security-video {
        min-height: 220px;
        order: -1;
    }
    /* Docs: single column on mobile */
    .tr-docs-grid {
        grid-template-columns: 1fr;
    }
    .tr-docs-card {
        padding: 28px 24px;
    }
    /* Support: tighter on mobile */
    .tr-support__media {
        height: 40vh !important;
        min-height: 240px !important;
    }
    .tr-support__right {
        padding: 64px 24px !important;
    }
    .tr-support__sla-tier {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .tr-support__sla-desc {
        display: none;
    }
    .tr-support__vs-row {
        gap: 4px;
    }
    /* Section nav: compact on mobile */
    .tr-section-nav {
        padding: 0 16px;
    }
    .tr-section-nav__inner {
        gap: 2px;
        padding: 5px 8px;
    }
    .tr-section-nav a {
        font-size: var(--tr-size-label);
        padding: 5px 10px;
    }
    /* FAQ accordion: full width */
    .tr-faq-v2__q {
        font-size: var(--tr-size-body);
    }
    /* Timeline vertical */
    .tr-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 52px;
    }
    .tr-timeline::before {
        top: 20px;
        bottom: 20px;
        left: 20px;
        right: auto;
        width: 2px;
        height: auto;
    }
    .tr-timeline-step {
        text-align: left;
    }
    .tr-timeline-step__node {
        position: absolute;
        left: -52px;
        top: 0;
        width: 40px;
        height: 40px;
        font-size: var(--tr-size-label);
        margin: 0;
    }
    .tr-timeline-step__body {
        max-width: none;
    }
}

/* ===================================================================
   RESPONSIVE — Ultra-small mobile (≤480px)
   =================================================================== */

@media (max-width: 480px) {
    .tr-service-card {
        flex: 0 0 calc(100vw - 48px);
    }

    .tr-threat-stat__value {
        font-size: clamp(28px, 8vw, 44px);
    }

    .tr-feature-cell {
        padding: 24px 20px;
    }

    .tr-automation-redirect__box {
        padding: 28px 20px;
    }

    .tr-automation-redirect__headline {
        font-size: var(--tr-size-h4);
    }
}
