/* ==========================================================================
   KBi "Trivia" T2 — Product Information Page
   Layered ON TOP of css/style.css + css/KBi_info.css
   Only contains styles unique to the T2 page so the T1 page is unaffected.

   2026 refresh — "clean bright" editorial layout.
   Everything below the hero uses the `t2b-` prefix and its own type scale so
   it never inherits from (or leaks into) the shared KBi_info.css sections.
   The navigation and the hero slideshow are intentionally untouched.
   ========================================================================== */

:root {
    /* legacy tokens still used by the hero / shared blocks */
    --t2-ink: #171a20;
    --t2-ink-soft: #5c5e62;
    --t2-accent: #2B5CD4;
    --t2-accent-warm: #e03127;
    --t2-dark: #0e1116;
    --t2-dark-2: #161b23;

    /* ---- bright editorial design system ---- */
    --t2b-red: #E8232D;
    --t2b-red-dk: #C4141D;
    --t2b-ink: #16181C;
    --t2b-ink-2: #33373D;
    --t2b-body: #74787E;
    --t2b-body-2: #90969C;
    --t2b-line: #E4E6E9;
    --t2b-line-2: #EFF0F2;
    --t2b-bg: #FFFFFF;
    --t2b-soft: #F4F4F5;
    --t2b-ghost: #E9EAEC;

    --t2b-font: 'Inter', 'Gotham SSm A', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --t2b-head: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --t2b-shadow: 0 14px 40px rgba(16, 18, 22, 0.08);
    --t2b-shadow-sm: 0 8px 22px rgba(16, 18, 22, 0.07);
}

/* --------------------------------------------------------------------------
   0. SECTION SHELL — number gutter, eyebrow, title, lead
   -------------------------------------------------------------------------- */
.t2b {
    position: relative;
    background: var(--t2b-bg);
    color: var(--t2b-ink);
    font-family: var(--t2b-font);
    padding: clamp(70px, 8.5vw, 128px) 0;
    scroll-margin-top: 84px;
    overflow: hidden;
}

.t2b--soft { background: var(--t2b-soft); }
.t2b--tight { padding-top: clamp(46px, 5vw, 72px); }

.t2b-wrap {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* number gutter + header ------------------------------------------------- */
.t2b-head {
    display: grid;
    grid-template-columns: clamp(96px, 9vw, 148px) minmax(0, 1fr);
    align-items: start;
    gap: 0 clamp(12px, 2vw, 28px);
}

.t2b-num {
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: clamp(52px, 6.4vw, 92px);
    line-height: 0.82;
    letter-spacing: -0.05em;
    color: var(--t2b-ghost);
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.t2b--soft .t2b-num { color: #E2E3E5; }

.t2b-headtext { max-width: 900px; }

.t2b-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--t2b-red);
    margin-bottom: 14px;
}

.t2b-title {
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.018em;
    text-transform: uppercase;
    color: var(--t2b-ink);
    margin: 0;
    text-wrap: balance;
}

.t2b-title .t2b-thin {
    font-weight: 300;
    color: var(--t2b-ink-2);
}

.t2b-lead {
    margin: 22px 0 0;
    max-width: 66ch;
    font-size: 15px;
    line-height: 1.8;
    color: var(--t2b-body);
    font-weight: 400;
}

.t2b-body {
    /* content column aligned with the header text, clear of the number gutter */
    margin-top: clamp(34px, 4vw, 58px);
    padding-left: clamp(96px, 9vw, 148px);
    margin-left: clamp(12px, 2vw, 28px);
}

.t2b-body--flush { padding-left: 0; margin-left: 0; }

/* buttons ---------------------------------------------------------------- */
.t2b-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.t2b-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 28px;
    border-radius: 999px;
    background: var(--t2b-red);
    color: #fff;
    font-family: var(--t2b-font);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.t2b-btn svg { width: 15px; height: 15px; flex: none; transition: transform 0.25s ease; }

.t2b-btn:hover {
    background: var(--t2b-red-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(232, 35, 45, 0.28);
}

.t2b-btn:hover svg { transform: translateX(4px); }

.t2b-btn--ghost {
    background: transparent;
    color: var(--t2b-ink);
    border-color: #D8DADD;
}

.t2b-btn--ghost:hover {
    background: transparent;
    color: var(--t2b-ink);
    border-color: var(--t2b-ink);
    box-shadow: none;
}

.t2b-btn:focus-visible {
    outline: 2px solid var(--t2b-red);
    outline-offset: 3px;
}

@media (max-width: 760px) {
    .t2b-head { grid-template-columns: 1fr; gap: 6px; }
    .t2b-num { font-size: 44px; }
    .t2b-body { padding-left: 0; margin-left: 0; }
}

/* --------------------------------------------------------------------------
   1. PRODUCT HIGHLIGHTS — stat strip
   -------------------------------------------------------------------------- */
.t2b-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: clamp(38px, 4.4vw, 62px);
    border-top: 1px solid var(--t2b-line);
    padding-top: 34px;
}

.t2b-stat {
    position: relative;
    padding: 0 22px;
    border-left: 1px solid var(--t2b-line);
}

.t2b-stat:first-child { padding-left: 0; border-left: none; }

.t2b-stat::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 2px;
    width: 2px;
    height: 30px;
    background: var(--t2b-red);
}

.t2b-stat:first-child::before { display: none; }

.t2b-stat-sup {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t2b-body);
    margin-bottom: 4px;
}

.t2b-stat-val {
    display: block;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--t2b-ink);
}

.t2b-stat-val em {
    font-style: normal;
    font-size: 0.42em;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--t2b-ink-2);
    margin-left: 5px;
}

.t2b-stat-lbl {
    display: block;
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--t2b-body);
}

.t2b-tagline {
    margin: clamp(34px, 4vw, 52px) 0 0;
    font-family: var(--t2b-head);
    font-weight: 700;
    font-size: clamp(15px, 1.5vw, 19px);
    letter-spacing: 0.01em;
    color: var(--t2b-ink);
}

.t2b-tagline::before {
    content: '';
    display: block;
    width: 46px;
    height: 3px;
    background: var(--t2b-red);
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .t2b-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
    .t2b-stat:nth-child(3) { padding-left: 0; border-left: none; }
    .t2b-stat:nth-child(3)::before { display: none; }
}

@media (max-width: 520px) {
    .t2b-stats { grid-template-columns: 1fr; row-gap: 26px; }
    .t2b-stat { padding-left: 0; border-left: none; padding-top: 22px; border-top: 1px solid var(--t2b-line); }
    .t2b-stat:first-child { padding-top: 0; border-top: none; }
    .t2b-stat::before { display: none; }
}

/* --------------------------------------------------------------------------
   2. THE BIG IDEA — showroom video with right-hand pitch overlay
   -------------------------------------------------------------------------- */
.t2b-video {
    position: relative;
    margin-top: clamp(34px, 4vw, 56px);
    background: #0B0D10;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(16, 18, 22, 0.18);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    outline: none;
}

.t2b-video:focus-visible { box-shadow: 0 0 0 3px var(--t2b-red), 0 24px 60px rgba(16, 18, 22, 0.18); }

/* The showroom master is 1920x1080 but the picture does not fill it — the export
   left a black border baked into the frame. Measured on the source file:
       left 132px · top 86px · bottom 41px · right 3px
   (padded by ~4px below to swallow the soft compression edge of each band.)
   So the footage is enlarged past those bands, which the stage clips away —
   `object-fit: cover` alone cannot help, because the bars are picture content.
   Re-measure and update these numbers if the film is ever re-exported. */
.t2b-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Preferred: crop the source region itself, so the result is identical at
       every stage aspect ratio (16/9 on desktop, 4/3 under 680px). */
    object-view-box: inset(90px 7px 45px 136px);
}

/* Firefox has no object-view-box — fall back to scaling the element and nudging
   it so the same 1785x945 picture area lands flush against the stage edges.
   scale 1.142857 = 1080 / (1080 - 90 - 45); the translate re-centres the crop. */
@supports not (object-view-box: inset(0px)) {
    .t2b-video video {
        transform-origin: 0 0;
        transform: translate(-10.982%, -9.524%) scale(1.142857);
    }
}

/* right-side scrim so the pitch stays legible over any frame */
.t2b-video-scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(270deg, rgba(9, 10, 12, 0.90) 0%, rgba(9, 10, 12, 0.72) 26%, rgba(9, 10, 12, 0.28) 52%, rgba(9, 10, 12, 0) 74%),
        linear-gradient(0deg, rgba(9, 10, 12, 0.45) 0%, rgba(9, 10, 12, 0) 38%);
}

.t2b-video-pitch {
    position: absolute;
    top: 50%;
    right: clamp(20px, 4vw, 62px);
    transform: translateY(-50%);
    width: min(430px, 56%);
    text-align: right;
    color: #fff;
    pointer-events: none;
    z-index: 2;
}

.t2b-video-pitch .t2b-pitch-eyebrow {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #FF5A62;
    margin-bottom: 14px;
}

.t2b-video-pitch p {
    margin: 0;
    font-family: var(--t2b-head);
    font-weight: 700;
    font-size: clamp(15px, 1.9vw, 27px);
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.t2b-video-pitch p strong {
    color: #fff;
    font-weight: 800;
    box-shadow: inset 0 -0.14em 0 rgba(232, 35, 45, 0.85);
}

.t2b-video-pitch::after {
    content: '';
    display: block;
    width: 54px;
    height: 3px;
    background: var(--t2b-red);
    margin: 20px 0 0 auto;
}

/* playback affordances --------------------------------------------------- */
.t2b-video-hint {
    position: absolute;
    left: clamp(16px, 3vw, 34px);
    bottom: clamp(16px, 3vw, 30px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(12, 14, 17, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.t2b-video-hint .t2b-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #37D67A;
    flex: none;
    box-shadow: 0 0 0 4px rgba(55, 214, 122, 0.18);
}

.t2b-video.is-paused .t2b-video-hint .t2b-dot {
    background: var(--t2b-red);
    box-shadow: 0 0 0 4px rgba(232, 35, 45, 0.2);
}

/* big centre pause glyph, only while paused */
.t2b-video-state {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.t2b-video.is-paused .t2b-video-state { opacity: 1; }

.t2b-video-state span {
    width: clamp(56px, 6vw, 76px);
    height: clamp(56px, 6vw, 76px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: grid;
    place-items: center;
    color: #fff;
}

.t2b-video-state svg { width: 40%; height: 40%; }

@media (max-width: 680px) {
    .t2b-video { aspect-ratio: 4 / 3; }
    .t2b-video-pitch { width: auto; left: clamp(16px, 5vw, 26px); right: clamp(16px, 5vw, 26px); text-align: left; top: auto; bottom: 64px; transform: none; }
    .t2b-video-pitch::after { margin-left: 0; }
    .t2b-video-scrim { background: linear-gradient(0deg, rgba(9, 10, 12, 0.92) 0%, rgba(9, 10, 12, 0.6) 42%, rgba(9, 10, 12, 0.1) 78%); }
    .t2b-video-hint { left: 50%; transform: translateX(-50%); bottom: 16px; }
}

/* problem / solution pair ------------------------------------------------ */
.t2b-ps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 34px);
    margin-top: clamp(34px, 4vw, 56px);
}

.t2b-ps-item {
    background: #fff;
    border: 1px solid var(--t2b-line);
    border-top: 3px solid var(--t2b-line);
    padding: clamp(26px, 3vw, 38px);
}

.t2b-ps-item--sol { border-top-color: var(--t2b-red); }

.t2b-ps-item h3 {
    margin: 0 0 14px;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t2b-ink);
}

.t2b-ps-item--sol h3 { color: var(--t2b-red); }

.t2b-ps-item p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--t2b-body);
}

@media (max-width: 760px) { .t2b-ps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   3. INSIDE THE CABIN — full-bleed slideshow with per-frame copy
   -------------------------------------------------------------------------- */

/* the stage runs to the window edges and sits flush against the next band */
.t2b--bleed-end { padding-bottom: 0; }

.t2b-cab {
    position: relative;
    margin-top: clamp(34px, 4vw, 58px);
    height: clamp(460px, 74vh, 780px);
    overflow: hidden;
    background: #0B0D10;
    cursor: pointer;
    outline: none;
    isolation: isolate;
}

.t2b-cab:focus-visible { box-shadow: inset 0 0 0 3px var(--t2b-red); }

/* ---------- frames ---------- */
.t2b-cab-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}

.t2b-cab-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.9s ease, visibility 0s;
}

.t2b-cab-slide picture { display: block; height: 100%; }

.t2b-cab-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transform-origin: 58% 50%;
}

/* slow drift on whichever frame is showing; frozen while paused */
.t2b-cab-slide.is-active img { animation: t2CabDrift 11s ease-out forwards; }
.t2b-cab.is-paused .t2b-cab-slide.is-active img { animation-play-state: paused; }

@keyframes t2CabDrift {
    from { transform: scale(1.001); }
    to   { transform: scale(1.09); }
}

/* readability scrim, per frame so it cross-fades with the picture */
.t2b-cab-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(9, 10, 12, 0.88) 0%, rgba(9, 10, 12, 0.66) 26%, rgba(9, 10, 12, 0.18) 56%, rgba(9, 10, 12, 0) 76%),
        linear-gradient(0deg, rgba(9, 10, 12, 0.62) 0%, rgba(9, 10, 12, 0) 46%);
}

/* ---------- per-frame copy ---------- */
.t2b-cab-copy {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: clamp(52px, 7vw, 96px);
    color: #fff;
    pointer-events: none;
}

.t2b-cab-copy > div {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    max-width: min(1280px, calc(100% - 48px));
}

.t2b-cab-num {
    display: block;
    font-family: var(--t2b-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.t2b-cab-num b { color: var(--t2b-red); font-weight: 800; }

.t2b-cab-copy h3 {
    margin: 0;
    max-width: 16ch;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: clamp(26px, 4vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.t2b-cab-copy h3::after {
    content: '';
    display: block;
    width: 54px;
    height: 3px;
    background: var(--t2b-red);
    margin: clamp(16px, 2vw, 24px) 0;
}

.t2b-cab-copy p {
    margin: 0;
    max-width: 46ch;
    font-size: clamp(14px, 1.15vw, 16px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

/* the copy lifts into place each time a frame becomes active */
.t2b-cab-slide.is-active .t2b-cab-num,
.t2b-cab-slide.is-active .t2b-cab-copy h3,
.t2b-cab-slide.is-active .t2b-cab-copy p {
    animation: t2CabRise 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.t2b-cab-slide.is-active .t2b-cab-copy h3 { animation-delay: 0.08s; }
.t2b-cab-slide.is-active .t2b-cab-copy p  { animation-delay: 0.16s; }

@keyframes t2CabRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

/* ---------- dots ---------- */
.t2b-cab-dots {
    position: absolute;
    z-index: 2;
    right: max(24px, calc(50% - 640px + 24px));
    bottom: clamp(52px, 7vw, 96px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.t2b-cab-dot {
    width: 34px;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.t2b-cab-dot:hover { background: rgba(255, 255, 255, 0.6); }
.t2b-cab-dot.is-active { background: var(--t2b-red); width: 56px; }
.t2b-cab-dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ---------- playback hint ---------- */
.t2b-cab-hint {
    position: absolute;
    z-index: 2;
    top: clamp(18px, 3vw, 30px);
    right: max(24px, calc(50% - 640px + 24px));
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(12, 14, 17, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    pointer-events: none;
}

.t2b-cab-hint .t2b-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #37D67A;
    flex: none;
    box-shadow: 0 0 0 4px rgba(55, 214, 122, 0.18);
}

.t2b-cab.is-paused .t2b-cab-hint .t2b-dot {
    background: var(--t2b-red);
    box-shadow: 0 0 0 4px rgba(232, 35, 45, 0.2);
}

@media (max-width: 680px) {
    .t2b-cab { height: clamp(420px, 66vh, 560px); }
    .t2b-cab-slide::after {
        background: linear-gradient(0deg, rgba(9, 10, 12, 0.92) 0%, rgba(9, 10, 12, 0.62) 46%, rgba(9, 10, 12, 0.12) 82%);
    }
    .t2b-cab-copy { bottom: 74px; }
    .t2b-cab-copy h3 { max-width: none; }
    .t2b-cab-dots { left: 24px; right: auto; bottom: 30px; }
    .t2b-cab-hint { top: auto; bottom: 26px; right: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    .t2b-cab-slide,
    .t2b-cab-slide.is-active { transition: opacity 0.2s linear; }
    .t2b-cab-slide.is-active img,
    .t2b-cab-slide.is-active .t2b-cab-num,
    .t2b-cab-slide.is-active .t2b-cab-copy h3,
    .t2b-cab-slide.is-active .t2b-cab-copy p { animation: none; }
    .t2b-cab-slide img { transform: none; }
}

/* shared two-column layout, also used by section 06 */
.t2b-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 4.5vw, 72px);
    align-items: center;
}

@media (max-width: 860px) {
    .t2b-split { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   4. REAL CITY LIFE — image cards with floating icon
   -------------------------------------------------------------------------- */
.t2b-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 28px);
}

.t2b-card {
    position: relative;
    background: #fff;
    border-radius: 3px;
    box-shadow: var(--t2b-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.t2b-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(16, 18, 22, 0.12);
}

.t2b-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--t2b-soft);
}

.t2b-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.t2b-card:hover .t2b-card-media img { transform: scale(1.05); }

.t2b-card-body {
    position: relative;
    padding: 46px 24px 30px;
    flex: 1;
}

.t2b-card-icon {
    position: absolute;
    top: -28px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--t2b-ink);
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(16, 18, 22, 0.14);
    transition: background 0.3s ease, color 0.3s ease;
}

.t2b-card:hover .t2b-card-icon { background: var(--t2b-red); color: #fff; }

.t2b-card h3 {
    margin: 0 0 12px;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t2b-ink);
}

.t2b-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--t2b-body);
}

.t2b-card::after {
    content: '';
    position: absolute;
    left: 24px;
    bottom: 0;
    width: 34px;
    height: 3px;
    background: var(--t2b-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.t2b-card:hover::after { transform: scaleX(1); }

.t2b-center-cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(34px, 4vw, 52px);
}

@media (max-width: 1000px) { .t2b-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .t2b-cards { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   5. WHY / TECHNOLOGY — icon list beside a product render
   -------------------------------------------------------------------------- */
.t2b-featlist {
    display: grid;
    gap: clamp(20px, 2.4vw, 30px);
}

.t2b-feat {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.t2b-feat-ico {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--t2b-line);
    display: grid;
    place-items: center;
    color: var(--t2b-ink);
    font-size: 18px;
    background: #fff;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.t2b-feat:hover .t2b-feat-ico {
    border-color: var(--t2b-red);
    color: var(--t2b-red);
    transform: translateY(-2px);
}

.t2b-feat h4 {
    margin: 4px 0 8px;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--t2b-ink);
}

.t2b-feat p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--t2b-body);
}

.t2b-render {
    position: relative;
    display: grid;
    place-items: center;
    padding: clamp(10px, 2vw, 26px);
}

.t2b-render::before {
    content: '';
    position: absolute;
    inset: 12% 0 8%;
    background: radial-gradient(ellipse at 50% 70%, rgba(16, 18, 22, 0.10), transparent 68%);
    border-radius: 50%;
}

.t2b-render img {
    position: relative;
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
}

/* two-column prose used by the technology narrative */
.t2b-prose {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 4vw, 60px);
    margin-top: clamp(38px, 4.4vw, 62px);
    padding-top: clamp(30px, 3.4vw, 46px);
    border-top: 1px solid var(--t2b-line);
}

.t2b-prose h3 {
    margin: 0 0 12px;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t2b-ink);
}

.t2b-prose h3 + p { margin-top: 0; }

.t2b-prose p {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--t2b-body);
}

.t2b-prose p:last-child { margin-bottom: 0; }

.t2b-quote-inline {
    display: block;
    margin-top: 6px;
    font-family: var(--t2b-head);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--t2b-red);
    letter-spacing: 0.005em;
}

@media (max-width: 860px) { .t2b-prose { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   6. COLOUR STUDIO — bright rebuild (IDs/classes kept for the controller)
   -------------------------------------------------------------------------- */
.t2-colors {
    position: relative;
    background: var(--t2b-bg);
    color: var(--t2b-ink);
    font-family: var(--t2b-font);
    padding: clamp(70px, 8.5vw, 128px) 0;
    scroll-margin-top: 84px;
    overflow: hidden;
}

.t2-colors::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 24, 28, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(0deg, rgba(22, 24, 28, 0.035) 1px, transparent 1px) 0 0 / 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 45%, #000 20%, transparent 72%);
    mask-image: radial-gradient(ellipse at 50% 45%, #000 20%, transparent 72%);
    pointer-events: none;
}

.t2-colors > * { position: relative; z-index: 1; }

.t2-col-head {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto clamp(34px, 4vw, 58px);
}

/* the stage and everything under it stays centred; the header block follows the
   numbered left-aligned rhythm of the other sections */
.t2-col-stage,
.t2-col-meta,
.t2-col-chips,
.t2-col-actions,
.t2-color-note { text-align: center; }

.t2-colors h2 {
    margin: 0;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.018em;
    text-transform: uppercase;
    color: var(--t2b-ink);
}

.t2-colors .t2-lead {
    margin: 22px 0 0;
    max-width: 66ch;
    font-size: 15px;
    line-height: 1.8;
    color: var(--t2b-body);
}

/* ---------- stage ---------- */
.t2-col-stage {
    position: relative;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.t2-col-viewport {
    position: relative;
    flex: 1;
    max-width: 900px;
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    /* the studio photography already carries its own light backdrop, so the
       viewport stays plain white — no second frame around the shot */
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.t2-col-img {
    max-width: 96%;
    max-height: 94%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    z-index: 1;
}

.t2-col-viewport.is-swapping .t2-col-img { opacity: 0; transform: scale(0.985); }

.t2-col-viewport.is-loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(16, 18, 22, 0.05) 45%, transparent 70%);
    background-size: 220% 100%;
    animation: t2ColShimmer 1.1s linear infinite;
    z-index: 2;
}

@keyframes t2ColShimmer {
    from { background-position: 140% 0; }
    to   { background-position: -40% 0; }
}

/* ---------- prev / next ---------- */
.t2-col-arrow {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--t2b-line);
    background: #fff;
    color: var(--t2b-ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.t2-col-arrow svg { width: 22px; height: 22px; }

.t2-col-arrow:hover {
    background: var(--t2b-red);
    border-color: var(--t2b-red);
    color: #fff;
    transform: scale(1.05);
}

.t2-col-arrow:active { transform: scale(0.97); }

.t2-col-arrow:focus-visible { outline: 2px solid var(--t2b-red); outline-offset: 3px; }

/* ---------- caption block ---------- */
.t2-col-meta {
    width: min(760px, calc(100% - 48px));
    margin: 32px auto 0;
}

.t2-col-counter {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 14px;
    font-family: var(--t2b-head);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: #A6AAB0;
}

.t2-col-counter .t2-col-current { color: var(--t2b-red); }

.t2-col-counter::after {
    content: '';
    width: 44px;
    height: 1px;
    background: var(--t2b-line);
    margin-left: 12px;
}

.t2-col-series {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--t2b-red);
    margin-bottom: 10px;
}

.t2-col-name {
    margin: 0;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: clamp(19px, 2.2vw, 27px);
    letter-spacing: -0.01em;
    color: var(--t2b-ink);
}

.t2-col-mirror {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--t2b-body);
}

.t2-col-mirror strong { color: var(--t2b-ink); font-weight: 700; }

/* ---------- chips ---------- */
.t2-col-chips {
    width: min(760px, calc(100% - 48px));
    margin: 28px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.t2-chip {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--t2b-line);
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.t2-chip span {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}

.t2-chip span::before,
.t2-chip span::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
}

.t2-chip span::before { left: 0; background: var(--c1); }
.t2-chip span::after { right: 0; background: var(--c2); }

.t2-chip:hover { border-color: #B9BDC3; transform: translateY(-2px); }

.t2-chip.active {
    border-color: var(--t2b-red);
    box-shadow: 0 0 0 3px rgba(232, 35, 45, 0.14);
}

.t2-chip:focus-visible { outline: 2px solid var(--t2b-red); outline-offset: 3px; }

/* ---------- CTA ---------- */
.t2-col-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.t2-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    border-radius: 999px;
    background: var(--t2b-red);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.t2-order-btn svg { width: 17px; height: 17px; }

.t2-order-btn:hover {
    background: var(--t2b-red-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(232, 35, 45, 0.28);
}

.t2-order-btn:active { transform: translateY(0); }

.t2-order-ghost {
    display: inline-flex;
    align-items: center;
    padding: 15px 28px;
    border-radius: 999px;
    border: 1px solid #D8DADD;
    color: var(--t2b-ink);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.25s ease;
}

.t2-order-ghost:hover { border-color: var(--t2b-ink); color: var(--t2b-ink); }

.t2-color-note {
    width: min(760px, calc(100% - 48px));
    margin: 30px auto 0;
    font-size: 12px;
    line-height: 1.7;
    color: #9AA0A6;
}

@media (max-width: 900px) {
    .t2-col-stage { gap: 6px; }
    .t2-col-arrow { width: 44px; height: 44px; }
}

@media (max-width: 640px) {
    .t2-col-viewport { aspect-ratio: 4 / 3; }
    .t2-col-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
    .t2-col-arrow-prev { left: 4px; }
    .t2-col-arrow-next { right: 4px; }
    .t2-col-arrow:hover { transform: translateY(-50%) scale(1.05); }
    .t2-chip { width: 32px; height: 32px; }
    .t2-chip span { width: 20px; height: 20px; }
}

/* --------------------------------------------------------------------------
   7. PULL QUOTE
   -------------------------------------------------------------------------- */
.t2-quote {
    background: var(--t2b-soft);
    font-family: var(--t2b-font);
    padding: clamp(60px, 7vw, 100px) 24px;
    text-align: center;
    position: relative;
}

.t2-quote::before {
    content: '“';
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(60px, 8vw, 104px);
    line-height: 0.7;
    color: var(--t2b-red);
    margin-bottom: 18px;
}

.t2-quote blockquote {
    margin: 0 auto;
    max-width: 900px;
    font-family: var(--t2b-head);
    font-weight: 700;
    font-size: clamp(18px, 2.4vw, 30px);
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: var(--t2b-ink);
}

.t2-quote cite {
    display: block;
    margin-top: 24px;
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--t2b-body);
}

/* --------------------------------------------------------------------------
   8. SPECIFICATIONS — bright table
   -------------------------------------------------------------------------- */
.t2b-specshots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 26px);
}

.t2b-specshot {
    margin: 0;
    background: #fff;
    border: 1px solid var(--t2b-line-2);
    border-radius: 4px;
    padding: 18px;
    text-align: center;
}

.t2b-specshot img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: contain;
    margin-bottom: 14px;
}

.t2b-specshot figcaption {
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--t2b-body);
}

.t2b-spectable {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.4vw, 34px);
    margin-top: clamp(30px, 3.6vw, 48px);
}

.t2b-speccol {
    border-top: 3px solid var(--t2b-ink);
    padding-top: 20px;
}

.t2b-speccol:nth-child(2) { border-top-color: var(--t2b-red); }

.t2b-speccol h4 {
    margin: 0 0 18px;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t2b-ink);
}

.t2b-speccol p {
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--t2b-line-2);
    font-size: 13px;
    line-height: 1.7;
    color: var(--t2b-body);
}

.t2b-speccol p:last-child { border-bottom: none; margin-bottom: 0; }

/* Labels keep the trailing colon that lives in the i18n dictionaries, so they
   stay inline with the value rather than sitting on their own line. */
.t2b-speccol strong {
    font-weight: 700;
    color: var(--t2b-ink);
}

.t2b-drawing {
    margin: clamp(32px, 4vw, 52px) 0 0;
    text-align: center;
}

.t2b-drawing img {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--t2b-line-2);
    border-radius: 4px;
    background: #fff;
}

.t2b-drawing figcaption,
.t2b-footnote {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.7;
    color: #9AA0A6;
}

.t2b-footnote { max-width: 900px; }

@media (max-width: 1100px) { .t2b-spectable { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px)  { .t2b-specshots { grid-template-columns: 1fr; } .t2b-specshot img { height: 240px; } }
@media (max-width: 620px)  { .t2b-spectable { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   9. INNOVATION — text beside a stacked gallery
   -------------------------------------------------------------------------- */
.t2b-innogrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4.5vw, 64px);
    align-items: start;
}

/* the gallery column is the taller of the two — keep the prose in view */
@media (min-width: 1000px) {
    .t2b-innotext { position: sticky; top: 104px; }
}

.t2b-innotext h3 {
    margin: 0 0 14px;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: clamp(17px, 1.9vw, 22px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--t2b-ink);
}

.t2b-innotext h4 {
    margin: 28px 0 10px;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t2b-red);
}

.t2b-innotext p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--t2b-body);
}

.t2b-innogallery { display: grid; gap: clamp(16px, 2vw, 22px); }

.t2b-innogallery figure {
    margin: 0;
    background: #fff;
    border: 1px solid var(--t2b-line-2);
    border-radius: 4px;
    overflow: hidden;
}

.t2b-innogallery img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.t2b-innogallery figcaption {
    padding: 14px 18px 18px;
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--t2b-body);
    border-top: 2px solid var(--t2b-red);
}

@media (max-width: 860px) { .t2b-innogrid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   10. CLOSING CTA BAND
   -------------------------------------------------------------------------- */
.t2b-cta {
    background: var(--t2b-ink);
    color: #fff;
    font-family: var(--t2b-font);
    padding: clamp(56px, 6.5vw, 90px) 24px;
    text-align: center;
}

.t2b-cta h2 {
    margin: 0 auto;
    max-width: 22ch;
    font-family: var(--t2b-head);
    font-weight: 800;
    font-size: clamp(23px, 3vw, 38px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.t2b-cta p {
    margin: 18px auto 0;
    max-width: 60ch;
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
}

.t2b-cta .t2b-actions { justify-content: center; }

.t2b-cta .t2b-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.t2b-cta .t2b-btn--ghost:hover { border-color: #fff; color: #fff; }

/* --------------------------------------------------------------------------
   11. MOTION PREFERENCES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .t2b-card,
    .t2b-card-media img,
    .t2b-shot img,
    .t2b-feat-ico,
    .t2b-btn,
    .t2-col-img,
    .t2-chip { transition: none !important; }

    .t2-col-viewport.is-loading::before { animation: none; }
}
