/* =========================================================
   Triple Minds — About Us v2 (futuristic, enterprise)
   Scoped under .tm-about-v2 to avoid global collisions.
   ========================================================= */

.tm-about-v2 {
    --tm-bg: #07070a;
    --tm-bg-2: #0d0d12;
    --tm-surface: #ffffff;
    --tm-surface-2: #f4f4f6;
    --tm-ink: #0a0a0c;
    --tm-ink-2: #2a2a30;
    --tm-muted: #6b6b75;
    --tm-line: rgba(255, 255, 255, 0.08);
    --tm-line-dark: rgba(10, 10, 12, 0.08);
    --tm-red: #ff2e63;
    --tm-cyan: #0aefff;
    --tm-amber: #f7c948;
    --tm-grad: linear-gradient(135deg, #ff2e63 0%, #ff6b6b 50%, #f7c948 100%);
    --tm-grad-cool: linear-gradient(135deg, #0aefff 0%, #6c5ce7 100%);
    --tm-radius: 18px;
    --tm-radius-lg: 28px;
    --tm-ease: cubic-bezier(.2, .8, .2, 1);

    color: var(--tm-ink);
    background: var(--tm-surface);
    overflow-x: hidden;
}

.tm-about-v2 *,
.tm-about-v2 *::before,
.tm-about-v2 *::after { box-sizing: border-box; }

.tm-about-v2 img { max-width: 100%; height: auto; display: block; }

.tm-about-v2 [data-tm-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--tm-ease), transform .9s var(--tm-ease);
}
.tm-about-v2 [data-tm-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ============== SHARED PRIMITIVES ============== */

.tm-about-v2 .tm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--tm-red);
    padding: 8px 14px;
    border: 1px solid rgba(255, 46, 99, .25);
    border-radius: 999px;
    background: rgba(255, 46, 99, .06);
    margin-bottom: 18px;
}
.tm-about-v2 .tm-eyebrow::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--tm-red);
    box-shadow: 0 0 12px var(--tm-red);
    animation: tm-pulse 1.6s infinite;
}
.tm-about-v2 .tm-eyebrow--light {
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .15);
}
.tm-about-v2 .tm-eyebrow--light::before { background: #fff; box-shadow: 0 0 12px #fff; }

@keyframes tm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .35; transform: scale(.7); }
}

.tm-about-v2 .tm-section__head { margin-bottom: 44px; }
.tm-about-v2 .tm-section__head--center { text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }

.tm-about-v2 .tm-section__title {
    font-size: clamp(30px, 4.4vw, 60px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin: 0 0 18px;
    color: var(--tm-ink);
}
.tm-about-v2 .tm-section__title--light { color: #fff; }

.tm-about-v2 .tm-section__sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--tm-muted);
    max-width: 740px;
    margin: 0 auto;
}
.tm-about-v2 .tm-section__sub--light { color: rgba(255, 255, 255, .72); }
.tm-about-v2 .tm-section__head:not(.tm-section__head--center) .tm-section__sub { margin: 0; max-width: 640px; }

.tm-about-v2 .tm-text-stroke {
    -webkit-text-stroke: 1.5px var(--tm-ink);
    color: transparent;
}
.tm-about-v2 .tm-text-stroke--light {
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
}

.tm-about-v2 .tm-highlight {
    background: linear-gradient(120deg, rgba(255, 46, 99, .12), rgba(247, 201, 72, .12));
    padding: 2px 8px;
    border-radius: 6px;
    color: var(--tm-ink);
    font-weight: 600;
}

.tm-about-v2 .tm-btn {
    --b: var(--tm-red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .35s var(--tm-ease), box-shadow .35s var(--tm-ease), background .35s var(--tm-ease), color .35s var(--tm-ease);
    line-height: 1;
}
.tm-about-v2 .tm-btn svg { transition: transform .35s var(--tm-ease); }
.tm-about-v2 .tm-btn:hover svg { transform: translateX(4px); }

.tm-about-v2 .tm-btn--primary {
    background: var(--tm-red);
    color: #fff;
    box-shadow: 0 12px 30px -10px rgba(255, 46, 99, .55), inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.tm-about-v2 .tm-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(255, 46, 99, .7);
    background: linear-gradient(135deg, #ff2e63, #ff6b6b);
}

.tm-about-v2 .tm-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .25);
}
.tm-about-v2 .tm-btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .5);
}
/* Ghost on light bg */
.tm-about-v2 .tm-pillars .tm-btn--ghost,
.tm-about-v2 .tm-cta-close .tm-btn--ghost { color: var(--tm-ink); border-color: rgba(10, 10, 12, .2); }
.tm-about-v2 .tm-pillars .tm-btn--ghost:hover,
.tm-about-v2 .tm-cta-close .tm-btn--ghost:hover { background: rgba(10, 10, 12, .04); border-color: var(--tm-ink); color: var(--tm-ink); }

/* =========================================================
   1. HERO
   ========================================================= */

.tm-about-v2 .tm-hero {
    position: relative;
    min-height: 92vh;
    background: var(--tm-bg);
    color: #fff;
    padding: 120px 0 60px;
    overflow: hidden;
    isolation: isolate;
}

.tm-about-v2 .tm-hero__grid {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: .55;
    pointer-events: none;
}

.tm-about-v2 .tm-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}
.tm-about-v2 .tm-hero__orb--a {
    width: 520px; height: 520px;
    top: -160px; right: -120px;
    background: radial-gradient(circle, var(--tm-red) 0%, transparent 70%);
    animation: tm-float 14s ease-in-out infinite;
}
.tm-about-v2 .tm-hero__orb--b {
    width: 460px; height: 460px;
    bottom: -180px; left: -140px;
    background: radial-gradient(circle, var(--tm-cyan) 0%, transparent 70%);
    animation: tm-float 18s ease-in-out infinite reverse;
    opacity: .35;
}
@keyframes tm-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

.tm-about-v2 .tm-hero__noise {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 3px 3px;
    z-index: 1;
    pointer-events: none;
}

.tm-about-v2 .tm-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tm-about-v2 .tm-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(10px);
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    letter-spacing: .04em;
}
.tm-about-v2 .tm-hero__chip-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #19f47b;
    box-shadow: 0 0 10px #19f47b;
    animation: tm-pulse 1.6s infinite;
}

.tm-about-v2 .tm-hero__title {
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.03em;
    margin: 0 auto 24px;
    max-width: 1100px;
}
.tm-about-v2 .tm-hero__title-glow {
    display: inline-block;
    background: var(--tm-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 46, 99, .35));
}
.tm-about-v2 .tm-hero__title-strike {
    display: block;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, .85);
    color: transparent;
}

.tm-about-v2 .tm-hero__lede {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
}
.tm-about-v2 .tm-hero__lede strong { color: #fff; font-weight: 600; }

.tm-about-v2 .tm-hero__pillars {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(10px);
    margin-bottom: 36px;
}
.tm-about-v2 .tm-hero__pillar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    opacity: 0;
    transform: translateY(10px);
    animation: tm-pillar-in .8s var(--tm-ease) forwards;
    animation-delay: calc(var(--i, 0) * .15s + .4s);
}
.tm-about-v2 .tm-hero__pillar-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--tm-red);
    padding: 4px 8px;
    border: 1px solid rgba(255, 46, 99, .3);
    border-radius: 6px;
}
.tm-about-v2 .tm-hero__pillar-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.tm-about-v2 .tm-hero__pillar--plus {
    color: rgba(255, 255, 255, .35);
    font-size: 18px;
    font-weight: 300;
    padding: 0;
    animation: none;
    opacity: 1;
    transform: none;
}
@keyframes tm-pillar-in {
    to { opacity: 1; transform: none; }
}

.tm-about-v2 .tm-hero__cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.tm-about-v2 .tm-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.tm-about-v2 .tm-hero__stat {
    padding: 30px 16px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    opacity: 0;
    animation: tm-pillar-in .9s var(--tm-ease) forwards;
    animation-delay: calc(var(--i, 0) * .1s + .9s);
}
.tm-about-v2 .tm-hero__stat:last-child { border-right: 0; }
.tm-about-v2 .tm-hero__stat-num {
    display: block;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    background: var(--tm-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}
.tm-about-v2 .tm-hero__stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tm-about-v2 .tm-hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    z-index: 3;
}
.tm-about-v2 .tm-hero__scroll span {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .8), transparent);
    background-size: 1px 200%;
    animation: tm-scroll-line 2s linear infinite;
}
@keyframes tm-scroll-line {
    0% { background-position: 0 -100%; }
    100% { background-position: 0 200%; }
}

/* =========================================================
   2. PROBLEM
   ========================================================= */

.tm-about-v2 .tm-problem {
    padding: 90px 0;
    background: var(--tm-surface);
    position: relative;
}

.tm-about-v2 .tm-problem__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 36px;
    align-items: center;
    margin-top: 40px;
}

.tm-about-v2 .tm-problem__before,
.tm-about-v2 .tm-problem__after {
    padding: 36px;
    border-radius: var(--tm-radius-lg);
    border: 1px solid var(--tm-line-dark);
    background: var(--tm-surface-2);
}
.tm-about-v2 .tm-problem__after {
    background: linear-gradient(135deg, #0a0a0c 0%, #1a1a22 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, .1);
    box-shadow: 0 30px 60px -30px rgba(255, 46, 99, .35);
    position: relative;
    overflow: hidden;
}
.tm-about-v2 .tm-problem__after::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--tm-red), transparent 50%, var(--tm-cyan));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .6;
}

.tm-about-v2 .tm-problem__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--tm-muted);
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(10, 10, 12, .06);
    margin-bottom: 24px;
}
.tm-about-v2 .tm-problem__label--ok {
    color: #fff;
    background: rgba(255, 46, 99, .15);
}

.tm-about-v2 .tm-problem__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tm-about-v2 .tm-problem__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .65);
    border: 1px solid var(--tm-line-dark);
    font-size: 15px;
    font-weight: 500;
    color: var(--tm-ink-2);
}
.tm-about-v2 .tm-problem__list li i {
    font-style: normal;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #b94c5e;
    padding: 4px 10px;
    background: rgba(255, 46, 99, .08);
    border-radius: 999px;
}
.tm-about-v2 .tm-problem__list--ok li {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .08);
    color: #fff;
}
.tm-about-v2 .tm-problem__list--ok li i {
    color: var(--tm-cyan);
    background: rgba(10, 239, 255, .1);
}

.tm-about-v2 .tm-problem__bridge {
    width: 200px;
    height: 200px;
}
.tm-about-v2 .tm-problem__bridge svg { width: 100%; height: 100%; }
.tm-about-v2 .tm-problem__path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 1.6s var(--tm-ease);
}
.tm-about-v2 [data-tm-reveal].is-visible .tm-problem__path { stroke-dashoffset: 0; }
.tm-about-v2 .tm-problem__path:nth-child(2) { transition-delay: .15s; }
.tm-about-v2 .tm-problem__path:nth-child(3) { transition-delay: .3s; }
.tm-about-v2 .tm-problem__node {
    filter: drop-shadow(0 0 8px var(--tm-red));
    animation: tm-pulse 2s infinite;
}

/* =========================================================
   3. ORIGIN
   ========================================================= */

.tm-about-v2 .tm-origin {
    padding: 100px 0;
    background: var(--tm-surface);
    position: relative;
    overflow: hidden;
}
.tm-about-v2 .tm-origin__bg-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(90px, 14vw, 220px);
    font-weight: 900;
    letter-spacing: -.04em;
    -webkit-text-stroke: 1px rgba(10, 10, 12, .04);
    color: transparent;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}
.tm-about-v2 .tm-origin__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 60px;
    align-items: center;
}

.tm-about-v2 .tm-origin__media {
    position: relative;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}
.tm-about-v2 .tm-origin__frame {
    position: relative;
    border-radius: var(--tm-radius-lg);
    overflow: hidden;
    aspect-ratio: 5/4;
    background: #0a0a0c;
}
.tm-about-v2 .tm-origin__frame img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform 1.4s var(--tm-ease);
}
.tm-about-v2 .tm-origin__frame:hover img { transform: scale(1.04); }
.tm-about-v2 .tm-origin__frame-glow {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--tm-red), transparent 60%, var(--tm-cyan));
    z-index: -1;
    filter: blur(24px);
    opacity: .5;
}
.tm-about-v2 .tm-origin__frame-corner {
    position: absolute;
    width: 22px; height: 22px;
    border: 2px solid var(--tm-red);
}
.tm-about-v2 .tm-origin__frame-corner--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.tm-about-v2 .tm-origin__frame-corner--tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.tm-about-v2 .tm-origin__frame-corner--bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.tm-about-v2 .tm-origin__frame-corner--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.tm-about-v2 .tm-origin__badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(7, 7, 10, .92);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .5);
}
.tm-about-v2 .tm-origin__badge span {
    display: block;
    font-size: 17px;
    font-weight: 700;
    background: var(--tm-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}
.tm-about-v2 .tm-origin__badge em {
    font-style: normal;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.tm-about-v2 .tm-origin__copy { padding-left: 0; min-width: 0; }
.tm-about-v2 .tm-origin__text {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--tm-ink-2);
    margin: 0 0 22px;
}
.tm-about-v2 .tm-origin__text--em { font-size: 16px; }

.tm-about-v2 .tm-origin__founders {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin: 24px 0 24px;
}
.tm-about-v2 .tm-origin__founder {
    padding: 18px;
    border-radius: 14px;
    background: var(--tm-surface-2);
    border: 1px solid var(--tm-line-dark);
    transition: border-color .3s var(--tm-ease), transform .3s var(--tm-ease);
}
.tm-about-v2 .tm-origin__founder:hover {
    border-color: rgba(255, 46, 99, .3);
    transform: translateY(-3px);
}
.tm-about-v2 .tm-origin__founder-id {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--tm-bg);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 46, 99, .35);
}
.tm-about-v2 .tm-origin__founder h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--tm-ink);
    letter-spacing: -.01em;
}
.tm-about-v2 .tm-origin__founder p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--tm-muted);
    margin: 0;
}

/* =========================================================
   4. PILLARS
   ========================================================= */

.tm-about-v2 .tm-pillars {
    padding: 90px 0;
    background: var(--tm-surface-2);
    position: relative;
}

.tm-about-v2 .tm-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.tm-about-v2 .tm-pillar-card {
    --accent: var(--tm-red);
    position: relative;
    padding: 40px 32px;
    background: #fff;
    border-radius: var(--tm-radius-lg);
    border: 1px solid var(--tm-line-dark);
    overflow: hidden;
    transition: transform .5s var(--tm-ease), box-shadow .5s var(--tm-ease);
    isolation: isolate;
}
.tm-about-v2 .tm-pillar-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 46, 99, .08), transparent 40%);
    background-image: radial-gradient(circle at 50% 0%, var(--accent), transparent 60%);
    opacity: 0;
    transition: opacity .5s var(--tm-ease);
    z-index: -1;
}
.tm-about-v2 .tm-pillar-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--tm-ease);
}
.tm-about-v2 .tm-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(10, 10, 12, .25);
}
.tm-about-v2 .tm-pillar-card:hover::before { opacity: .12; }
.tm-about-v2 .tm-pillar-card:hover::after { transform: scaleX(1); }

.tm-about-v2 .tm-pillar-card__num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--accent);
    padding: 6px 12px;
    border: 1px solid currentColor;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 32px;
    opacity: .9;
}
.tm-about-v2 .tm-pillar-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(10, 10, 12, .04);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
}
.tm-about-v2 .tm-pillar-card__icon svg { width: 28px; height: 28px; }

.tm-about-v2 .tm-pillar-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--tm-ink);
}
.tm-about-v2 .tm-pillar-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--tm-muted);
    margin: 0 0 22px;
}
.tm-about-v2 .tm-pillar-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tm-about-v2 .tm-pillar-card ul li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--tm-ink-2);
}
.tm-about-v2 .tm-pillar-card ul li::before {
    content: "";
    position: absolute;
    left: 0; top: .6em;
    width: 12px; height: 1px;
    background: var(--accent);
}

.tm-about-v2 .tm-pillar-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap .3s var(--tm-ease);
}
.tm-about-v2 .tm-pillar-card__link:hover { gap: 12px; color: var(--accent); }

.tm-about-v2 .tm-pillars__quote {
    text-align: center;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 500;
    color: var(--tm-ink);
    font-style: italic;
    padding-top: 40px;
    border-top: 1px solid var(--tm-line-dark);
    margin-top: 40px;
}
.tm-about-v2 .tm-pillars__quote span {
    color: var(--tm-red);
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 6px;
}

/* =========================================================
   5. VALUES
   ========================================================= */

.tm-about-v2 .tm-values {
    padding: 90px 0;
    background: var(--tm-surface);
}
.tm-about-v2 .tm-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.tm-about-v2 .tm-value-card {
    padding: 32px 26px;
    border-radius: var(--tm-radius);
    background: var(--tm-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--tm-ease);
    border: 1px solid rgba(255, 255, 255, .06);
}
.tm-about-v2 .tm-value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(200px circle at 100% 0%, rgba(255, 46, 99, .25), transparent 50%);
    opacity: 0;
    transition: opacity .5s var(--tm-ease);
}
.tm-about-v2 .tm-value-card:hover { transform: translateY(-6px); }
.tm-about-v2 .tm-value-card:hover::before { opacity: 1; }
.tm-about-v2 .tm-value-card__no {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--tm-red);
    display: block;
    margin-bottom: 24px;
}
.tm-about-v2 .tm-value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}
.tm-about-v2 .tm-value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* =========================================================
   6. TIMELINE
   ========================================================= */

.tm-about-v2 .tm-timeline {
    padding: 100px 0;
    background: var(--tm-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tm-about-v2 .tm-timeline::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 46, 99, .3), transparent);
    transform: translateX(-50%);
    pointer-events: none;
}
.tm-about-v2 .tm-timeline .tm-section__title { color: #fff; }
.tm-about-v2 .tm-timeline .tm-section__sub { color: rgba(255, 255, 255, .65); }

.tm-about-v2 .tm-timeline__list {
    list-style: none;
    padding: 0;
    margin: 60px 0 0;
    position: relative;
}
.tm-about-v2 .tm-timeline__list::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, .08);
    transform: translateX(-50%);
}

.tm-about-v2 .tm-timeline__item {
    position: relative;
    width: 50%;
    padding: 0 50px 44px 0;
}
.tm-about-v2 .tm-timeline__item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 44px 50px;
}
.tm-about-v2 .tm-timeline__item:last-child { padding-bottom: 0; }

.tm-about-v2 .tm-timeline__year {
    position: absolute;
    top: 0;
    right: -1px;
    transform: translate(50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--tm-bg);
    border: 1px solid rgba(255, 46, 99, .3);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .02em;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--tm-bg), 0 0 30px rgba(255, 46, 99, .25);
}
.tm-about-v2 .tm-timeline__item:nth-child(even) .tm-timeline__year {
    right: auto;
    left: -1px;
    transform: translate(-50%, -50%);
}

.tm-about-v2 .tm-timeline__card {
    padding: 28px 30px;
    border-radius: var(--tm-radius);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    transition: border-color .4s var(--tm-ease), background .4s var(--tm-ease);
    position: relative;
}
.tm-about-v2 .tm-timeline__card:hover {
    border-color: rgba(255, 46, 99, .4);
    background: rgba(255, 46, 99, .04);
}
.tm-about-v2 .tm-timeline__card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}
.tm-about-v2 .tm-timeline__card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}
.tm-about-v2 .tm-timeline__card p strong { color: #fff; font-weight: 600; }

.tm-about-v2 .tm-timeline__item--current .tm-timeline__year {
    background: var(--tm-red);
    border-color: var(--tm-red);
    box-shadow: 0 0 0 6px var(--tm-bg), 0 0 30px var(--tm-red);
}
.tm-about-v2 .tm-timeline__pulse {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #19f47b;
    box-shadow: 0 0 12px #19f47b;
    animation: tm-pulse 1.6s infinite;
}

/* =========================================================
   7. IMPACT
   ========================================================= */

.tm-about-v2 .tm-impact {
    padding: 90px 0;
    background: var(--tm-surface);
}
.tm-about-v2 .tm-impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--tm-line-dark);
    border-radius: var(--tm-radius-lg);
    overflow: hidden;
    background: var(--tm-surface-2);
}
.tm-about-v2 .tm-impact__cell {
    padding: 40px 28px;
    text-align: center;
    border-right: 1px solid var(--tm-line-dark);
    border-bottom: 1px solid var(--tm-line-dark);
    background: #fff;
    transition: background .4s var(--tm-ease);
    position: relative;
}
.tm-about-v2 .tm-impact__cell:hover { background: var(--tm-surface-2); }
.tm-about-v2 .tm-impact__cell:nth-child(4n) { border-right: 0; }
.tm-about-v2 .tm-impact__cell:nth-last-child(-n+4) { border-bottom: 0; }
.tm-about-v2 .tm-impact__cell b {
    display: block;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--tm-ink);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}
.tm-about-v2 .tm-impact__cell--accent { background: var(--tm-bg); color: #fff; }
.tm-about-v2 .tm-impact__cell--accent:hover { background: #14141a; }
.tm-about-v2 .tm-impact__cell--accent b {
    background: var(--tm-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tm-about-v2 .tm-impact__cell--accent span { color: rgba(255, 255, 255, .6); }
.tm-about-v2 .tm-impact__cell span {
    font-size: 13px;
    color: var(--tm-muted);
    letter-spacing: .04em;
}

/* =========================================================
   8. WHY
   ========================================================= */

.tm-about-v2 .tm-why {
    padding: 90px 0;
    background: var(--tm-surface-2);
}
.tm-about-v2 .tm-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tm-about-v2 .tm-why__card {
    position: relative;
    padding: 32px 28px;
    background: #fff;
    border-radius: var(--tm-radius);
    border: 1px solid var(--tm-line-dark);
    transition: transform .5s var(--tm-ease), border-color .4s var(--tm-ease);
    overflow: hidden;
}
.tm-about-v2 .tm-why__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(255, 46, 99, .06));
    opacity: 0;
    transition: opacity .4s var(--tm-ease);
}
.tm-about-v2 .tm-why__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 46, 99, .35);
}
.tm-about-v2 .tm-why__card:hover::before { opacity: 1; }

.tm-about-v2 .tm-why__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 46, 99, .08);
    color: var(--tm-red);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    position: relative;
}
.tm-about-v2 .tm-why__icon svg { width: 26px; height: 26px; }
.tm-about-v2 .tm-why__card h4 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--tm-ink);
    position: relative;
}
.tm-about-v2 .tm-why__card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--tm-muted);
    margin: 0;
    position: relative;
}

/* =========================================================
   9. AI
   ========================================================= */

.tm-about-v2 .tm-ai {
    padding: 100px 0;
    background: var(--tm-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tm-about-v2 .tm-ai__bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.tm-about-v2 .tm-ai__beam {
    position: absolute;
    width: 1200px;
    height: 1200px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
}
.tm-about-v2 .tm-ai__beam--1 {
    background: radial-gradient(circle, var(--tm-red), transparent 60%);
    top: -400px; left: -300px;
    animation: tm-float 16s ease-in-out infinite;
}
.tm-about-v2 .tm-ai__beam--2 {
    background: radial-gradient(circle, var(--tm-cyan), transparent 60%);
    bottom: -500px; right: -400px;
    animation: tm-float 20s ease-in-out infinite reverse;
}

.tm-about-v2 .tm-ai__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
}

.tm-about-v2 .tm-ai__media {
    position: relative;
    border-radius: var(--tm-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}
.tm-about-v2 .tm-ai__media img {
    width: 100%; aspect-ratio: 5/4; object-fit: cover;
}
.tm-about-v2 .tm-ai__media-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    font-size: 12px;
    color: #fff;
    backdrop-filter: blur(10px);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.tm-about-v2 .tm-ai__media-tag span {
    width: 8px; height: 8px; border-radius: 50%;
    background: #19f47b;
    box-shadow: 0 0 10px #19f47b;
    animation: tm-pulse 1.6s infinite;
}

.tm-about-v2 .tm-ai__copy p {
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    margin: 0 0 28px;
}
.tm-about-v2 .tm-ai__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.tm-about-v2 .tm-ai__tags span {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: border-color .3s, color .3s;
}
.tm-about-v2 .tm-ai__tags span:hover {
    border-color: var(--tm-red);
    color: #fff;
}

/* =========================================================
   10. GLOBE / MARQUEE
   ========================================================= */

.tm-about-v2 .tm-globe {
    padding: 90px 0;
    background: var(--tm-surface);
    overflow: hidden;
}
.tm-about-v2 .tm-globe__marquee {
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.tm-about-v2 .tm-globe__track {
    display: flex;
    gap: 16px;
    width: max-content;
}
.tm-about-v2 .tm-globe__marquee--ltr .tm-globe__track {
    animation: tm-marquee-ltr 60s linear infinite;
}
.tm-about-v2 .tm-globe__marquee--rtl .tm-globe__track {
    animation: tm-marquee-rtl 70s linear infinite;
}
@keyframes tm-marquee-ltr {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}
@keyframes tm-marquee-rtl {
    from { transform: translateX(-33.333%); }
    to   { transform: translateX(0); }
}
.tm-about-v2 .tm-globe__chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--tm-surface-2);
    border: 1px solid var(--tm-line-dark);
    border-radius: 999px;
    transition: border-color .3s, transform .3s;
}
.tm-about-v2 .tm-globe__chip:hover {
    border-color: var(--tm-red);
    transform: translateY(-2px);
}
.tm-about-v2 .tm-globe__chip img {
    width: 36px; height: 28px;
    border-radius: 4px;
    object-fit: cover;
}
.tm-about-v2 .tm-globe__chip span {
    font-size: 15px;
    font-weight: 500;
    color: var(--tm-ink);
}

/* =========================================================
   11. MEDIA
   ========================================================= */

.tm-about-v2 .tm-media {
    padding: 90px 0;
    background: var(--tm-bg);
    color: #fff;
}
.tm-about-v2 .tm-media__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.tm-about-v2 .tm-media__copy p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    margin: 0 0 28px;
}
.tm-about-v2 .tm-media__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.tm-about-v2 .tm-media__logo {
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--tm-radius);
    display: grid;
    place-items: center;
    padding: 20px;
    transition: background .4s, border-color .4s, transform .4s;
}
.tm-about-v2 .tm-media__logo:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 46, 99, .4);
    transform: translateY(-4px);
}
.tm-about-v2 .tm-media__logo img {
    max-width: 70%;
    max-height: 70%;
    filter: brightness(0) invert(1);
    opacity: .8;
    transition: opacity .3s;
}
.tm-about-v2 .tm-media__logo:hover img { opacity: 1; }

/* =========================================================
   12. TEAM
   ========================================================= */

.tm-about-v2 .tm-team {
    padding: 90px 0;
    background: var(--tm-surface);
}
.tm-about-v2 .tm-team .tm-section__head { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.tm-about-v2 .tm-team__slider { padding: 30px 0; overflow: visible; }
.tm-about-v2 .tm-team__card {
    position: relative;
    border-radius: var(--tm-radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--tm-surface-2);
    transition: transform .5s var(--tm-ease);
}
.tm-about-v2 .tm-team__card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s var(--tm-ease), filter .5s;
    filter: grayscale(100%) contrast(1.05);
}
.tm-about-v2 .tm-team__card:hover { transform: translateY(-6px); }
.tm-about-v2 .tm-team__card:hover img { transform: scale(1.05); filter: none; }
.tm-about-v2 .tm-team__card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 46, 99, .15) 50%, transparent 60%);
    opacity: 0;
    transition: opacity .5s;
}
.tm-about-v2 .tm-team__card:hover .tm-team__card-shine { opacity: 1; }

/* =========================================================
   13. TRUST
   ========================================================= */

.tm-about-v2 .tm-trust {
    padding: 100px 0;
    background: var(--tm-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tm-about-v2 .tm-trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px circle at 20% 0%, rgba(255, 46, 99, .12), transparent 50%),
        radial-gradient(600px circle at 80% 100%, rgba(10, 239, 255, .08), transparent 50%);
    pointer-events: none;
}
.tm-about-v2 .tm-trust > .container { position: relative; z-index: 1; }
.tm-about-v2 .tm-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}
.tm-about-v2 .tm-trust__card {
    padding: 36px 30px;
    border-radius: var(--tm-radius-lg);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: transform .5s var(--tm-ease), border-color .4s var(--tm-ease);
    backdrop-filter: blur(10px);
}
.tm-about-v2 .tm-trust__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 46, 99, .4);
}
.tm-about-v2 .tm-trust__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 46, 99, .15), rgba(255, 46, 99, .04));
    color: var(--tm-red);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 46, 99, .25);
}
.tm-about-v2 .tm-trust__icon svg { width: 26px; height: 26px; }
.tm-about-v2 .tm-trust__card h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}
.tm-about-v2 .tm-trust__card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    margin: 0;
}

/* =========================================================
   14. CTA CLOSE
   ========================================================= */

.tm-about-v2 .tm-cta-close {
    padding: 90px 0;
    background: var(--tm-surface);
}
.tm-about-v2 .tm-cta-close__box {
    position: relative;
    padding: 80px 40px;
    border-radius: var(--tm-radius-lg);
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--tm-bg);
    color: #fff;
}
.tm-about-v2 .tm-cta-close__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px circle at 20% 0%, rgba(255, 46, 99, .35), transparent 50%),
        radial-gradient(500px circle at 80% 100%, rgba(10, 239, 255, .15), transparent 50%);
    z-index: -1;
}
.tm-about-v2 .tm-cta-close__box h2 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 20px;
    color: #fff;
}
.tm-about-v2 .tm-cta-close__box .tm-text-stroke {
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
}
.tm-about-v2 .tm-cta-close__box p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    margin: 0 auto 36px;
    max-width: 640px;
}
.tm-about-v2 .tm-cta-close__row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================
   FAQ + BLOG inherits from theme; just give some breathing room
   ========================================================= */
.tm-about-v2 .tm-faqblog { padding-top: 60px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .tm-about-v2 .tm-pillars__grid,
    .tm-about-v2 .tm-why__grid,
    .tm-about-v2 .tm-trust__grid,
    .tm-about-v2 .tm-impact__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tm-about-v2 .tm-impact__cell:nth-child(4n) { border-right: 1px solid var(--tm-line-dark); }
    .tm-about-v2 .tm-impact__cell:nth-child(2n) { border-right: 0; }
    .tm-about-v2 .tm-impact__cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--tm-line-dark); }
    .tm-about-v2 .tm-impact__cell:nth-last-child(-n+2) { border-bottom: 0; }

    .tm-about-v2 .tm-values__grid { grid-template-columns: repeat(2, 1fr); }

    .tm-about-v2 .tm-origin__inner,
    .tm-about-v2 .tm-ai__inner,
    .tm-about-v2 .tm-media__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .tm-about-v2 .tm-origin__copy { padding-left: 0; }
    .tm-about-v2 .tm-origin__media { max-width: 380px; }
    .tm-about-v2 .tm-origin__founders { grid-template-columns: 1fr; gap: 10px; }

    .tm-about-v2 .tm-problem__grid { grid-template-columns: 1fr; gap: 24px; }
    .tm-about-v2 .tm-problem__bridge { width: 120px; height: 80px; transform: rotate(90deg); margin: 0 auto; }

    .tm-about-v2 .tm-hero__stats { grid-template-columns: repeat(2, 1fr); }
    .tm-about-v2 .tm-hero__stat:nth-child(2) { border-right: 0; }
    .tm-about-v2 .tm-hero__stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .08); }
}

@media (max-width: 720px) {
    .tm-about-v2 .tm-hero { padding: 110px 0 60px; min-height: auto; }
    .tm-about-v2 .tm-hero__pillars { padding: 14px 16px; gap: 8px; }
    .tm-about-v2 .tm-hero__pillar-name { font-size: 14px; }
    .tm-about-v2 .tm-hero__cta-row { flex-direction: column; align-items: stretch; }
    .tm-about-v2 .tm-hero__cta-row .tm-btn { justify-content: center; }

    .tm-about-v2 .tm-pillars__grid,
    .tm-about-v2 .tm-why__grid,
    .tm-about-v2 .tm-trust__grid,
    .tm-about-v2 .tm-values__grid,
    .tm-about-v2 .tm-impact__grid,
    .tm-about-v2 .tm-media__logos {
        grid-template-columns: 1fr;
    }
    .tm-about-v2 .tm-impact__cell { border-right: 0 !important; border-bottom: 1px solid var(--tm-line-dark) !important; }
    .tm-about-v2 .tm-impact__cell:last-child { border-bottom: 0 !important; }

    .tm-about-v2 .tm-problem,
    .tm-about-v2 .tm-origin,
    .tm-about-v2 .tm-pillars,
    .tm-about-v2 .tm-values,
    .tm-about-v2 .tm-timeline,
    .tm-about-v2 .tm-impact,
    .tm-about-v2 .tm-why,
    .tm-about-v2 .tm-ai,
    .tm-about-v2 .tm-globe,
    .tm-about-v2 .tm-media,
    .tm-about-v2 .tm-team,
    .tm-about-v2 .tm-trust,
    .tm-about-v2 .tm-cta-close { padding: 80px 0; }

    .tm-about-v2 .tm-cta-close__box { padding: 50px 24px; }

    /* Vertical timeline becomes left-aligned */
    .tm-about-v2 .tm-timeline__list::before { left: 24px; transform: none; }
    .tm-about-v2 .tm-timeline__item,
    .tm-about-v2 .tm-timeline__item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 50px 70px;
    }
    .tm-about-v2 .tm-timeline__year,
    .tm-about-v2 .tm-timeline__item:nth-child(even) .tm-timeline__year {
        left: 24px;
        right: auto;
        top: 0;
        transform: translate(-50%, 0);
        width: 70px;
        height: 70px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tm-about-v2 [data-tm-reveal] { opacity: 1; transform: none; transition: none; }
    .tm-about-v2 .tm-hero__orb,
    .tm-about-v2 .tm-ai__beam,
    .tm-about-v2 .tm-globe__track,
    .tm-about-v2 .tm-hero__pillar,
    .tm-about-v2 .tm-hero__stat { animation: none !important; }
    .tm-about-v2 .tm-hero__pillar,
    .tm-about-v2 .tm-hero__stat { opacity: 1; transform: none; }
}
