/* ==========================================================================
   TradeTech Sandbox — One Page (Midnight theme)
   Includes fonts, colors, layout, responsiveness, and hero background.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
    /* ---- Midnight surfaces ------------------------------------------ */
    --tt1-ink: #16233A;
    --tt1-band: #243652;
    --tt1-deep: #0F1B2E;
    --tt1-accent: #E0B62E;
    --tt1-accent-hi: #E7C55F;
    --tt1-ember: #E8A33D;
    --tt1-white: #FFFFFF;
    --tt1-white-hi: #F6EAC4;
    --tt1-fg: #FFFFFF;
    --tt1-fg-mute: rgba(255, 255, 255, 0.68);
    --tt1-fg-faint: rgba(255, 255, 255, 0.5);
    --tt1-line: rgba(255, 255, 255, 0.1);
    --tt1-line-mid: rgba(255, 255, 255, 0.16);
    --tt1-line-strong: rgba(255, 255, 255, 0.28);
    --tt1-shadow: 0 6px 24px rgba(15, 27, 46, 0.14);
    --tt1-shadow-lift: 0 14px 44px rgba(15, 27, 46, 0.14);
    /* ---- Typography ------------------------------------------------ */
    --tt1-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --tt1-display: 'Fraunces', Georgia, serif;
    --tt1-mono: 'JetBrains Mono', ui-monospace, monospace;
    --tt1-h1: clamp(2.5rem, 5.8vw, 4.2rem);
    --tt1-h2: clamp(1.8rem, 3.2vw, 2.8rem);
    --tt1-h3: clamp(1.2rem, 1.6vw, 1.6rem);
    --tt1-body: clamp(1rem, 1.1vw, 1.15rem);
    --tt1-btn: clamp(0.9rem, 1vw, 1rem);
    --tt1-meta: clamp(0.75rem, 0.8vw, 0.875rem);
    --tt1-metric: clamp(2rem, 3vw, 3.6rem);
    --tt1-hh: 76px; /* header height */
    --tt1-wrap-max: 1440px;
    --tt1-pad-x: clamp(20px, 5vw, 88px);
    /* Base theme colors */
    --tt1-accent: #E0B62E;
    --tt1-line-mid: rgba(255, 255, 255, 0.12);
    /* Vibrant Complementary Accents */
    --tt1-emerald: #6BD188;
    --tt1-emerald-glow: rgba(107, 209, 136, 0.12);
    --tt1-emerald-border: rgba(107, 209, 136, 0.35);
    --tt1-gold: #E0B62E;
    --tt1-gold-glow: rgba(224, 182, 46, 0.12);
    --tt1-gold-border: rgba(224, 182, 46, 0.35);
}

/* ---- Base --------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.tt1 {
    margin: 0;
    background: var(--tt1-ink);
    color: var(--tt1-fg);
    font-family: var(--tt1-sans);
    font-size: var(--tt1-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

    body.tt1 a {
       /* color: var(--tt1-accent);*/
        text-decoration: none;
        transition: all 0.25s ease;
    }

        /* This was `color: var(--tt1-ink)` - the page's own dark navy - so
           every link took the colour of the surface behind it on hover: nav
           links, .tt1-login and the ghost buttons all sat at 1.0:1, invisible.

           Buttons are excluded rather than listed one by one. As `body.tt1
           a:hover` this rule outranks any component's own `.x:hover` (0,2,2 vs
           0,2,0), so without the exclusion it dictates the hover colour of
           every button on the site regardless of what that button sits on -
           and .btn-gold alone has a different background on three pages. */
        body.tt1 a:not([class*="btn"]):not(.tt1-apply):not(.tt1-login):hover {
            color: var(--tt1-accent-hi);
        }

    body.tt1 button {
        font: inherit;
        cursor: pointer;
    }

    body.tt1 ::selection {
        background: rgba(224, 182, 46, 0.3);
    }

    body.tt1 img {
        max-width: 100%;
    }

/* ---- Shared Layout ----------------------------------------------- */
.tt1-wrap {
    width: 100%;
    max-width: var(--tt1-wrap-max);
    margin-inline: auto;
}

.tt1-section {
    background: var(--tt1-ink);
    padding: clamp(60px, 7.5vw, 108px) var(--tt1-pad-x);
    scroll-margin-top: 150px;
}

.tt1-band {
    background: var(--tt1-band);
}

.tt1-kicker {
    margin: 0;
    font-family: var(--tt1-mono);
    font-size: var(--tt1-meta);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tt1-accent);
}

.tt1-h2 {
    margin: 14px 0 0;
    font-family: var(--tt1-display);
    font-size: var(--tt1-h2);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--tt1-fg);
}

.tt1-lede {
    margin: 18px 0 0;
    font-size: var(--tt1-body);
    line-height: 1.8;
    color: var(--tt1-fg-mute);
    max-width: 62ch;
    text-wrap: pretty;
}

.tt1-diamond {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--tt1-white);
    transform: rotate(45deg);
    flex: none;
}

/* ---- Buttons ----------------------------------------------------- */
.tt1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: var(--tt1-btn);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
}

.tt1-btn-white {
    padding: 17px 38px;
    background: var(--tt1-white);
    color: var(--tt1-ink);
    box-shadow: var(--tt1-shadow);
}

    .tt1-btn-white:hover {
        background: var(--tt1-white-hi);
        box-shadow: var(--tt1-shadow-lift);
        transform: translateY(-2px);
     
    }

.tt1-btn-outline {
    padding: 17px 34px;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--tt1-fg);
    font-weight: 600;
}

    .tt1-btn-outline:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--tt1-accent);
    }

.tt1-btn-accent {
    padding: 14px 30px;
    background: var(--tt1-accent);
    color: var(--tt1-ink);
}

    /* White on the light-gold hover fill is 1.69:1. The design system puts
       --color-brand-on (the dark navy) on brand surfaces, not white. Anchors
       were already saved by the global rule outranking this one; <button>
       elements were not. */
    .tt1-btn-accent:hover {
        background: var(--tt1-accent-hi);
        color: var(--tt1-ink);
    }

.tt1-btn-quiet {
    padding: 14px 30px;
    border-color: var(--tt1-line-strong);
    color: var(--tt1-fg);
}

    .tt1-btn-quiet:hover {
        border-color: var(--tt1-accent);
        background: rgba(255, 255, 255, 0.06);
    }

/* ---- Progress Bar ------------------------------------------------ */
.tt1-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tt1-band);
    z-index: 90;
}

    .tt1-progress > i {
        display: block;
        height: 100%;
        width: 0%;
        background: var(--tt1-white);
    }

/* ---- Header (navbar) --------------------------------------------- */
.tt1-header {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 80;
    background: rgba(15, 27, 46, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--tt1-line);
}

.tt1-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 12px clamp(16px, 3.4vw, 56px);
    max-width: var(--tt1-wrap-max);
    margin: 0 auto;
}

.tt1-header-left {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.6vw, 22px);
    flex-wrap: wrap;
}

.tt1-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tt1-brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tt1-brand-name {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1;
    color: var(--tt1-fg);
}

    .tt1-brand-name em {
        font-style: normal;
        color: var(--tt1-accent);
    }

.tt1-brand-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.38em;
    color: var(--tt1-fg-mute);
    font-family: var(--tt1-mono);
}

.tt1-ministry {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .tt1-ministry > i {
        width: 1px;
        height: 30px;
        background: var(--tt1-line-mid);
    }

    .tt1-ministry > span {
        font-size: 13px;
        line-height: 1.45;
        color: var(--tt1-fg-mute);
        max-width: 24ch;
    }

    .tt1-ministry b {
        color: var(--tt1-fg);
        font-weight: 600;
    }

.tt1-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 15px;
    font-weight: 500;
}

    .tt1-nav a {
        color: var(--tt1-fg-mute);
    }

        .tt1-nav a:hover {
            color: var(--tt1-accent);
        }

/* The wrapper is transparent to layout on desktop, so .tt1-nav and
   .tt1-header-actions stay direct flex children of .tt1-header-inner. */
.tt1-header-panel {
    display: contents;
}

/* Hamburger: hidden on desktop, drives the header panel below 992px. */
.tt1-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid var(--tt1-line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--tt1-fg);
    cursor: pointer;
}

.tt1-menu-bars {
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

    .tt1-menu-bars::before,
    .tt1-menu-bars::after {
        content: "";
        position: absolute;
        left: 0;
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform 0.2s ease;
    }

    .tt1-menu-bars::before {
        top: -6px;
    }

    .tt1-menu-bars::after {
        top: 6px;
    }

.tt1-header.is-menu-open .tt1-menu-bars {
    background: transparent;
}

    .tt1-header.is-menu-open .tt1-menu-bars::before {
        transform: translateY(6px) rotate(45deg);
    }

    .tt1-header.is-menu-open .tt1-menu-bars::after {
        transform: translateY(-6px) rotate(-45deg);
    }

.tt1-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tt1-login {
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--tt1-fg);
    font-size: 14px;
    font-weight: 600;
}

    .tt1-login:hover {
        background: var(--tt1-band);
    }

.tt1-apply {
    padding: 11px 24px;
    border-radius: 999px;
    background: var(--tt1-white);
    color: var(--tt1-ink) !important;
    font-size: 14px;
    font-weight: 700;
}

    .tt1-apply:hover {
        background: var(--tt1-white-hi);
    }

/* ---- Hero -------------------------------------------------------- */
/*.tt1-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(540px, 80vh, 880px);
    padding-top: calc(var(--tt1-hh) + 60px);
    overflow: hidden;
    background: var(--tt1-deep);
}

.tt1-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(22, 35, 58) 3%, rgba(11, 26, 48, 0.9) 46%, rgba(11, 26, 48, 0.55) 100%);
     
    z-index: 1;
}*/

    /* Background image — updated to use slide22.jpg */
    /*.tt1-hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('/images/slide22.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.4;
        mix-blend-mode: overlay;
        z-index: -1;
    }

.tt1-hero-frame {
    position: absolute;
    top: calc(var(--tt1-hh) + 40px);
    left: clamp(14px, 3.4vw, 48px);
    right: clamp(14px, 3.4vw, 48px);
    bottom: clamp(56px, 8vw, 88px);
    border: 1px dashed rgba(224, 182, 46, 0.25);
    border-radius: 6px;
    pointer-events: none;
    z-index: 2;
}

.tt1-hero-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 2;
}

    .tt1-hero-corner.is-tl {
        top: calc(var(--tt1-hh) + 30px);
        left: clamp(6px, 2.4vw, 36px);
        border-top: 2px solid var(--tt1-white);
        border-left: 2px solid var(--tt1-white);
    }

    .tt1-hero-corner.is-br {
        bottom: clamp(46px, 7vw, 76px);
        right: clamp(6px, 2.4vw, 36px);
        border-bottom: 2px solid var(--tt1-white);
        border-right: 2px solid var(--tt1-white);
    }

.tt1-hero-body {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--tt1-wrap-max);
    margin-inline: auto;
    padding-inline: var(--tt1-pad-x);
}

.tt1-hero-eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--tt1-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tt1-accent);
}

.tt1-hero h1 {
    margin: 20px 0 0;
    font-family: var(--tt1-display);
    font-size: var(--tt1-h1);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--tt1-fg);
}

    .tt1-hero h1 span {
        color: var(--tt1-accent);
    }

.tt1-hero-sub {
    margin: 24px 0 0;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
    max-width: 58ch;
}

.tt1-hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}*/
/* ---- Hero -------------------------------------------------------- */
 .tt1-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(700px, 92vh, 1000px);
    padding-top: calc(var(--tt1-hh) + 60px);
    overflow: hidden;
    background: var(--tt1-deep);
}

.tt1-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* CSS grid pattern (subtle) */
    background-image: linear-gradient(rgba(224, 182, 46, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(224, 182, 46, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

    /* Background image – sits behind the grid */
    .tt1-hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        background-image: url('/images/slide22.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.35;
        mix-blend-mode: overlay;
    }

    /* Lighter gradient overlay – reduced opacity for a more transparent feel */
    .tt1-hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: linear-gradient(to top, rgba(22, 35, 58, 0.7) 3%, rgba(11, 26, 48, 0.4) 46%, rgba(11, 26, 48, 0.1) 100%);
        pointer-events: none;
    }

/* Corner frames and decorations – unchanged */
.tt1-hero-frame {
    position: absolute;
    top: calc(var(--tt1-hh) + 40px);
    left: clamp(14px, 3.4vw, 48px);
    right: clamp(14px, 3.4vw, 48px);
    bottom: clamp(56px, 8vw, 88px);
    border: 1px dashed rgba(224, 182, 46, 0.25);
    border-radius: 6px;
    pointer-events: none;
    z-index: 2;
}

.tt1-hero-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 2;
}

    .tt1-hero-corner.is-tl {
        top: calc(var(--tt1-hh) + 30px);
        left: clamp(6px, 2.4vw, 36px);
        border-top: 2px solid var(--tt1-white);
        border-left: 2px solid var(--tt1-white);
    }

    .tt1-hero-corner.is-br {
        bottom: clamp(46px, 7vw, 76px);
        right: clamp(6px, 2.4vw, 36px);
        border-bottom: 2px solid var(--tt1-white);
        border-right: 2px solid var(--tt1-white);
    }

.tt1-hero-body {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--tt1-wrap-max);
    margin-inline: auto;
    padding-inline: var(--tt1-pad-x);
    text-align: left;
}

.tt1-hero-eyebrow {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--tt1-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tt1-accent);
}

.tt1-hero h1 {
    margin: 20px 0 0;
    font-family: var(--tt1-display);
    font-size: var(--tt1-h1);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--tt1-fg);
}

    .tt1-hero h1 span {
        color: var(--tt1-accent);
    }

.tt1-hero-sub {
    margin: 24px 0 0;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
    max-width: 58ch;
}

.tt1-hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

/* ---- Ticker (unchanged) ------------------------------------------ */
.tt1-ticker {
    position: relative;
    z-index: 3;
    margin-top: clamp(40px, 6vw, 64px);
    padding: 20px 0;
    border-top: 1px solid var(--tt1-line);
    overflow: hidden;
    background: rgba(15, 27, 46, 0.4);
}

    .tt1-ticker > div {
        display: flex;
        width: max-content;
        animation: tt1-ticker 38s linear infinite;
        font-family: var(--tt1-mono);
        font-size: 15px;
        color: rgba(255, 255, 255, 0.55);
        white-space: nowrap;
    }

    .tt1-ticker span {
        padding: 0 22px;
    }

    .tt1-ticker i {
        padding: 0 22px;
        font-style: normal;
        color: var(--tt1-accent);
    }

@keyframes tt1-ticker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}
/* ---- Ticker ------------------------------------------------------ */
/*.tt1-ticker {
    position: relative;
    z-index: 3;
    margin-top: clamp(40px, 6vw, 64px);
    padding: 20px 0;
    border-top: 1px solid var(--tt1-line);
    overflow: hidden;
    background: rgba(15, 27, 46, 0.4);
}

    .tt1-ticker > div {
        display: flex;
        width: max-content;
        animation: tt1-ticker 38s linear infinite;
        font-family: var(--tt1-mono);
        font-size: 15px;
        color: rgba(255, 255, 255, 0.55);
        white-space: nowrap;
    }

    .tt1-ticker span {
        padding: 0 22px;
    }

    .tt1-ticker i {
        padding: 0 22px;
        font-style: normal;
        color: var(--tt1-accent);
    }

@keyframes tt1-ticker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}*/

/* ---- Trust strip ------------------------------------------------- */
.tt1-trust {
    background: var(--tt1-band);
    padding: clamp(26px, 3.4vw, 34px) var(--tt1-pad-x);
}

    .tt1-trust ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
        gap: clamp(18px, 2.4vw, 34px);
    }

    .tt1-trust li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: var(--tt1-btn);
        font-weight: 600;
        color:white;
    }

        .tt1-trust li::before {
            content: "";
            width: 7px;
            height: 7px;
            flex: none;
            background: var(--tt1-white);
            transform: rotate(45deg);
        }

/* ---- Section: Why apply (gaps) ----------------------------------- */
.tt1-gap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(36px, 5vw, 76px);
    align-items: start;
}

.tt1-gap-intro {
    position: sticky;
    top: 150px;
}

    .tt1-gap-intro .tt1-lede {
        margin-top: 20px;
        max-width: 46ch;
    }

.tt1-gap-list {
    display: flex;
    flex-direction: column;
}

.tt1-gap-row {
    display: grid;
    grid-template-columns: clamp(46px, 8vw, 104px) 1fr;
    gap: clamp(16px, 3vw, 30px);
    padding: clamp(20px, 2.6vw, 30px) 0;
    border-top: 1px solid var(--tt1-line-mid);
    align-items: start;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

    .tt1-gap-row:last-child {
        border-bottom: 1px solid var(--tt1-line-mid);
    }

    .tt1-gap-row:hover {
        padding-left: 14px;
    }

    .tt1-gap-row > b {
        font-family: var(--tt1-mono);
        font-size: clamp(28px, 3vw, 42px);
        font-weight: 600;
        line-height: 0.82;
        color: var(--tt1-accent);
    }

    .tt1-gap-row h3 {
        margin: 0;
        font-size: clamp(18px, 1.6vw, 22px);
        font-weight: 700;
        line-height: 1.3;
        color: var(--tt1-fg);
    }

    .tt1-gap-row p {
        margin: 10px 0 0;
        font-size: clamp(15px, 1vw, 17px);
        line-height: 1.8;
        color: var(--tt1-fg-mute);
        max-width: 54ch;
    }

/* ---- Section: Two outcomes (paths) ------------------------------- */
.tt1-paths .tt1-h2 {
    max-width: 26ch;
    margin-bottom: 12px;
}

.tt1-paths-lede {
    margin: 0 0 clamp(32px, 4vw, 48px);
}

.tt1-cards-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
    gap: 24px;
}

.tt1-card {
    display: flex;
    flex-direction: column;
    background: var(--tt1-band);
    border: 1px solid var(--tt1-line);
    border-top: 4px solid var(--tt1-accent);
    border-radius: 0 0 20px 20px;
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.6vw, 32px) clamp(26px, 3.2vw, 38px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .tt1-card.is-muted {
        border-top-color: var(--tt1-line-strong);
    }

    .tt1-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 54px rgba(15, 27, 46, 0.12);
    }

    .tt1-card h3 {
        margin: 20px 0 0;
        font-family: var(--tt1-display);
        font-size: clamp(20px, 1.8vw, 26px);
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--tt1-fg);
    }

    .tt1-card > p {
        margin: 12px 0 24px;
        font-size: clamp(15px, 1vw, 17px);
        line-height: 1.8;
        color: var(--tt1-fg-mute);
        max-width: 46ch;
    }

.tt1-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--tt1-ink);
    color: var(--tt1-accent);
    font-family: var(--tt1-mono);
    font-size: var(--tt1-meta);
    font-weight: 600;
    letter-spacing: 0.06em;
}

    .tt1-tag.is-muted {
        color: var(--tt1-fg);
    }

.tt1-spec {
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .tt1-spec > div {
        display: flex;
        justify-content: space-between;
        gap: 16px;
    }

        .tt1-spec > div:not(:last-child) {
            padding-bottom: 11px;
            border-bottom: 1px solid var(--tt1-line);
        }

    .tt1-spec dt {
        font-size: clamp(14px, 0.9vw, 16px);
        color: var(--tt1-fg-mute);
    }

    .tt1-spec dd {
        margin: 0;
        font-size: clamp(14px, 0.9vw, 16px);
        font-weight: 600;
        color: var(--tt1-fg);
    }

        .tt1-spec dd.tt1-free {
            font-family: var(--tt1-mono);
            font-size: clamp(18px, 1.4vw, 24px);
            font-weight: 700;
            color: var(--tt1-accent);
        }

.tt1-card .tt1-btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ---- Journey ----------------------------------------------------- */
.tt1-journey {
    background: var(--tt1-ink);
    padding: clamp(60px, 7.5vw, 108px) clamp(14px, 4vw, 72px) clamp(52px, 6vw, 88px);
    scroll-margin-top: 150px;
}

.tt1-journey-head {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: clamp(6px, 1vw, 16px);
}

    .tt1-journey-head .tt1-h2 {
        max-width: 26ch;
    }

    .tt1-journey-head .tt1-lede {
        max-width: 60ch;
    }

.tt1-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
    align-items: start;
    max-width: 1400px;
    margin: clamp(40px, 5vw, 60px) auto 0;
}

.tt1-j-cell {
    max-width: 560px;
}

    .tt1-j-cell.is-a {
        grid-column: 1;
        justify-self: end;
        text-align: left; /* was right */
        padding: 0 0 0 30px; /* was 0 30px 0 0 */
      
    }

    .tt1-j-cell.is-b {
        grid-column: 3;
        justify-self: start;
        text-align: left;
        padding: 0 0 0 30px;
    }

.tt1-j-card {
    background: var(--tt1-band);
    border: 1px solid var(--tt1-line);
    border-radius: 20px;
    padding: clamp(20px, 2.6vw, 30px) clamp(18px, 2.4vw, 30px);
    transition: border-color 0.35s ease, transform 0.35s ease;
}

    .tt1-j-card:hover {
        border-color: rgba(224, 182, 46, 0.55);
        transform: translateY(-5px);
    }

.tt1-j-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--tt1-mono);
    font-size: clamp(11px, 0.8vw, 13px);
    font-weight: 600;
}

    .tt1-j-meta .is-label {
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--tt1-accent);
    }

    .tt1-j-meta .is-pip {
        width: 5px;
        height: 5px;
        background: var(--tt1-white);
        transform: rotate(45deg);
    }

    .tt1-j-meta .is-note {
        color: var(--tt1-fg-mute);
    }

.tt1-j-card h3 {
    margin: 12px 0 0;
    font-family: var(--tt1-display);
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--tt1-fg);
}

.tt1-j-roles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--tt1-line);
}

    .tt1-j-roles p {
        margin: 0;
        font-size: clamp(14px, 0.9vw, 16px);
        line-height: 1.75;
        color: var(--tt1-fg-mute);
    }

        .tt1-j-roles p:first-child {
            color: var(--tt1-fg);
        }

    .tt1-j-roles b {
        font-family: var(--tt1-mono);
        font-size: var(--tt1-meta);
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--tt1-accent);
    }

.tt1-j-out {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--tt1-ink);
    font-family: var(--tt1-mono);
    font-size: clamp(11px, 0.8vw, 13px);
    font-weight: 600;
    color: var(--tt1-accent);
}

.tt1-j-mid {
    grid-column: 2;
    align-self: stretch;
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 150px;
}

    .tt1-j-mid svg {
        position: absolute;
        inset: 0;
        overflow: visible;
    }

.tt1-j-node {
    position: relative;
    z-index: 2;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--tt1-accent);
    border: 5px solid var(--tt1-line-mid);
    box-shadow: 0 6px 20px rgba(15, 27, 46, 0.14);
    font-family: var(--tt1-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--tt1-ink);
}

    .tt1-j-node.is-core {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

.tt1-outcomes {
    grid-column: 1 / -1;
    margin: clamp(34px, 4vw, 52px) auto 0;
    max-width: 900px;
    text-align: center;
}

    .tt1-outcomes h3 {
        margin: 0;
        font-family: var(--tt1-display);
        font-size: var(--tt1-h3);
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--tt1-fg);
        text-align: center;
    }

    .tt1-outcomes > p {
        margin: 12px auto 0;
        font-size: var(--tt1-body);
        line-height: 1.8;
        color: var(--tt1-fg-mute);
        max-width: 58ch;
    }

.tt1-outcome-pair {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 18px;
    margin-top: clamp(24px, 3vw, 34px);
    text-align: left;
}

    .tt1-outcome-pair > div {
        background: var(--tt1-band);
        border: 1px solid var(--tt1-line-mid);
        border-radius: 20px;
        padding: clamp(18px, 2.4vw, 26px);
    }

        .tt1-outcome-pair > div.is-primary {
            border-color: rgba(224, 182, 46, 0.4);
        }

    .tt1-outcome-pair b {
        font-family: var(--tt1-mono);
        font-size: var(--tt1-meta);
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--tt1-fg-mute);
    }

    .tt1-outcome-pair > div.is-primary b {
        color: var(--tt1-accent);
    }

    .tt1-outcome-pair p {
        margin: 12px 0 0;
        font-size: clamp(14px, 0.9vw, 16px);
        line-height: 1.8;
        color: var(--tt1-fg);
    }

/* ---- Section: Challenge ------------------------------------------ */
.tt1-split-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: clamp(30px, 4vw, 48px);
}

    .tt1-split-head .tt1-h2 {
        max-width: 26ch;
    }

.tt1-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--tt1-ink);
    color: var(--tt1-accent);
    font-family: var(--tt1-mono);
    font-size: var(--tt1-meta);
    font-weight: 600;
    white-space: nowrap;
}

    .tt1-pill > i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--tt1-accent);
        animation: tt1-dot 2.4s ease-in-out infinite;
    }

@keyframes tt1-dot {
    0%, 100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}

.tt1-challenge {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 44px);
    align-items: start;
}

.tt1-ch-card {
    background: var(--tt1-band);
    border: 1px solid var(--tt1-line);
    border-top: 4px solid var(--tt1-accent);
    border-radius: 0 0 20px 20px;
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.6vw, 32px);
}

    .tt1-ch-card .tt1-tag {
        padding: 5px 12px;
    }

    .tt1-ch-card h3 {
        margin: 18px 0 0;
        font-family: var(--tt1-display);
        font-size: clamp(18px, 1.6vw, 24px);
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--tt1-fg);
    }

    .tt1-ch-card p {
        margin: 12px 0 0;
        font-size: clamp(15px, 1vw, 17px);
        line-height: 1.8;
        color: var(--tt1-fg);
        max-width: 54ch;
    }

.tt1-ch-rows {
    display: flex;
    flex-direction: column;
}

.tt1-ch-row {
    padding: 16px 0;
    border-top: 1px solid var(--tt1-line);
}

    .tt1-ch-row:last-child {
        padding-bottom: 0;
    }

    .tt1-ch-row > span {
        font-family: var(--tt1-mono);
        font-size: clamp(11px, 0.8vw, 13px);
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--tt1-accent);
    }

    .tt1-ch-row p,
    .tt1-ch-row ul {
        margin: 8px 0 0;
        font-size: clamp(14px, 0.9vw, 16px);
        line-height: 1.8;
        color: var(--tt1-fg-mute);
    }

    .tt1-ch-row ul {
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .tt1-ch-row li {
        display: flex;
        gap: 12px;
    }

        .tt1-ch-row li::before {
            content: "";
            flex: none;
            width: 5px;
            height: 5px;
            margin-top: 14px;
            background: var(--tt1-accent);
            transform: rotate(45deg);
        }

.tt1-ch-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: clamp(30px, 4vw, 44px);
    padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 30px);
    border-radius: 20px;
    background: var(--tt1-ink);
    border: 1px solid rgba(224, 182, 46, 0.4);
}

    .tt1-ch-cta p {
        margin: 0;
        font-size: clamp(15px, 1vw, 17px);
        line-height: 1.8;
        color: var(--tt1-fg);
        max-width: 58ch;
    }

    .tt1-ch-cta .tt1-btn {
        padding: 14px 32px;
        white-space: nowrap;
    }

/* ---- Section: Eligibility (readiness check) ---------------------- */
.tt1-elig .tt1-h2 {
    max-width: 24ch;
    margin-bottom: 12px;
}

.tt1-elig-lede {
    margin: 0 0 clamp(32px, 4vw, 44px);
}

.tt1-elig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
    gap: 28px;
    align-items: start;
}

.tt1-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tt1-check {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(16px, 2.2vw, 22px) clamp(14px, 2.2vw, 24px);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--tt1-line-mid);
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

    .tt1-check[aria-pressed="true"] {
        background: var(--tt1-line-mid);
        border-color: var(--tt1-white);
    }

    .tt1-check b {
        display: block;
        font-size: clamp(15px, 1vw, 17px);
        font-weight: 600;
        color: var(--tt1-fg);
    }

    .tt1-check span span {
        display: block;
        margin-top: 6px;
        font-size: clamp(13px, 0.85vw, 15px);
        line-height: 1.7;
        color: var(--tt1-fg-mute);
    }

.tt1-check-box {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: transparent;
    border: 1px solid var(--tt1-line-mid);
    transition: background 0.3s ease, border-color 0.3s ease;
}

    .tt1-check-box svg {
        stroke: transparent;
        transition: stroke 0.3s ease;
    }

.tt1-check[aria-pressed="true"] .tt1-check-box {
    background: var(--tt1-white);
    border-color: var(--tt1-white);
}

    .tt1-check[aria-pressed="true"] .tt1-check-box svg {
        stroke: var(--tt1-ink);
    }

.tt1-elig-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tt1-verdict {
    border: 1px solid var(--tt1-line-mid);
    border-radius: 22px;
    padding: clamp(24px, 3.2vw, 34px) clamp(18px, 2.6vw, 30px);
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.4s ease, border-color 0.4s ease;
}

    .tt1-verdict[data-state="0"] {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.14);
    }

    .tt1-verdict[data-state="1"],
    .tt1-verdict[data-state="2"] {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--tt1-line-strong);
    }

    .tt1-verdict[data-state="3"] {
        background: rgba(224, 182, 46, 0.12);
        border-color: rgba(224, 182, 46, 0.55);
    }

    .tt1-verdict[data-state="4"] {
        background: rgba(224, 182, 46, 0.16);
        border-color: var(--tt1-accent);
    }

    .tt1-verdict > span {
        font-family: var(--tt1-mono);
        font-size: var(--tt1-meta);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--tt1-fg-mute);
    }

    .tt1-verdict h3 {
        margin: 12px 0 0;
        font-family: var(--tt1-display);
        font-size: clamp(20px, 1.8vw, 26px);
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: -0.02em;
        color: var(--tt1-fg);
    }

    .tt1-verdict[data-state="3"] h3,
    .tt1-verdict[data-state="4"] h3 {
        color: var(--tt1-accent);
    }

    .tt1-verdict > p {
        margin: 12px 0 24px;
        font-size: clamp(15px, 1vw, 17px);
        line-height: 1.8;
        color: var(--tt1-fg-mute);
    }

.tt1-verdict-mail {
    margin: 16px 0 0;
    font-size: var(--tt1-btn);
    line-height: 1.7;
    color: var(--tt1-fg-mute);
}

    .tt1-verdict-mail a {
        color: var(--tt1-accent);
        font-weight: 700;
    }

.tt1-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 18px;
}

    .tt1-support > div {
        padding-top: 16px;
        border-top: 2px solid rgba(224, 182, 46, 0.5);
    }

        .tt1-support > div:nth-child(2) {
            border-top-color: rgba(242, 236, 225, 0.4);
        }

        .tt1-support > div:nth-child(3) {
            border-top-color: rgba(232, 163, 61, 0.42);
        }

    .tt1-support h4 {
        margin: 0;
        font-size: clamp(15px, 1vw, 17px);
        font-weight: 700;
        color: var(--tt1-fg);
    }

    .tt1-support p {
        margin: 8px 0 0;
        font-size: clamp(14px, 0.9vw, 16px);
        line-height: 1.7;
        color: var(--tt1-fg-mute);
    }

.tt1-elig-note {
    margin: 0;
    font-size: clamp(14px, 0.9vw, 16px);
    line-height: 1.7;
    color: var(--tt1-fg-faint);
}

/* ---- Section: Ecosystem (wider programme) ------------------------ */
.tt1-eco-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 3.4vw, 40px);
}

    .tt1-eco-head .tt1-lede {
        margin: 0;
        max-width: 44ch;
    }

.tt1-eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(20px, 2.6vw, 32px);
}

    .tt1-eco-grid > div {
        padding-top: 20px;
        border-top: 1px solid var(--tt1-line-strong);
    }

    .tt1-eco-grid b {
        font-family: var(--tt1-mono);
        font-size: var(--tt1-meta);
        font-weight: 600;
        color: var(--tt1-accent);
    }

    .tt1-eco-grid h3 {
        margin: 10px 0 0;
        font-size: clamp(17px, 1.4vw, 20px);
        font-weight: 700;
        color: var(--tt1-fg);
    }

    .tt1-eco-grid p {
        margin: 8px 0 0;
        font-size: clamp(14px, 0.9vw, 16px);
        line-height: 1.75;
        color: var(--tt1-fg-mute);
    }

.tt1-eco-note {
    margin: clamp(22px, 3vw, 32px) 0 0;
    font-size: clamp(14px, 0.9vw, 16px);
    line-height: 1.8;
    color: var(--tt1-fg-faint);
    max-width: 68ch;
}

/* ---- Programme Targets ------------------------------------------- */
.tt1-target {
    position: relative;
    background: var(--tt1-ink);
    padding: clamp(64px, 8vw, 116px) var(--tt1-pad-x);
    overflow: hidden;
}

.tt1-target-mark {
    position: absolute;
    top: 50%;
    right: -3%;
    transform: translateY(-50%);
    font-family: var(--tt1-mono);
    font-size: clamp(140px, 22vw, 360px);
    font-weight: 600;
    line-height: 0.8;
    color: var(--tt1-accent);
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.08;
}

.tt1-target-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(28px, 4vw, 72px);
    align-items: center;
    max-width: var(--tt1-wrap-max);
    margin-inline: auto;
}

.tt1-target-num {
    font-family: var(--tt1-mono);
    font-size: clamp(48px, 6vw, 100px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--tt1-accent);
}

.tt1-target-cap {
    margin-top: 16px;
    font-size: clamp(15px, 1vw, 17px);
    font-weight: 600;
    color: var(--tt1-fg-mute);
}

.tt1-target-quote {
    margin: 0;
    font-family: var(--tt1-display);
    font-size: clamp(18px, 1.4vw, 26px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: var(--tt1-fg);
    max-width: 42ch;
}

/* ---- Section: Partners ------------------------------------------- */
.tt1-partners-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 3.4vw, 40px);
}

    .tt1-partners-head .tt1-h2 {
        max-width: 30ch;
        line-height: 1.14;
    }

    .tt1-partners-head .tt1-lede {
        margin-top: 14px;
        max-width: 52ch;
    }

.tt1-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr));
    gap: clamp(20px, 2.4vw, 32px);
    width: 100%;
    margin-top: clamp(24px, 3vw, 34px);
    padding-top: clamp(22px, 2.6vw, 30px);
    border-top: 1px solid var(--tt1-line-mid);
    list-style: none;
    padding-inline: 0;
}

    .tt1-stats li {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .tt1-stats b {
        font-family: var(--tt1-mono);
        font-size: clamp(26px, 2.8vw, 36px);
        font-weight: 600;
        color: var(--tt1-accent);
    }

    .tt1-stats li:nth-child(even) b {
        color: var(--tt1-fg);
    }

    .tt1-stats span {
        font-size: clamp(13px, 0.85vw, 15px);
        color: var(--tt1-fg-mute);
    }

.tt1-stats-note {
    margin: 0 0 clamp(26px, 3vw, 36px);
    font-size: clamp(13px, 0.85vw, 15px);
    line-height: 1.75;
    color: var(--tt1-fg-faint);
    max-width: 74ch;
}

.tt1-partner-logos {
    margin-top: clamp(20px, 2.6vw, 32px);
}

.tt1-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: 14px;
}

    .tt1-logos li {
        height: 96px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border: 1px solid var(--tt1-line-mid);
        border-radius: 14px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

        .tt1-logos li:hover {
            border-color: var(--tt1-accent);
            box-shadow: 0 10px 26px rgba(15, 27, 46, 0.08);
        }

    .tt1-logos img {
        height: 30px;
        width: auto;
        max-width: 76%;
        object-fit: contain;
    }

/* ---- Final CTA -------------------------------------------------- */
.tt1-cta {
    position: relative;
    background: var(--tt1-ink);
    padding: clamp(64px, 8vw, 112px) var(--tt1-pad-x);
    overflow: hidden;
    scroll-margin-top: 150px;
}

    .tt1-cta > .tt1-hero-frame {
        top: clamp(28px, 4vw, 52px);
        bottom: clamp(28px, 4vw, 52px);
        border-color: rgba(224, 182, 46, 0.3);
    }

.tt1-cta-body {
    position: relative;
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
}

    .tt1-cta-body h2 {
        margin: 18px 0 0;
        font-family: var(--tt1-display);
        font-size: clamp(2rem, 4.5vw, 3.6rem);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: var(--tt1-fg);
    }

        .tt1-cta-body h2 span {
            color: var(--tt1-accent);
        }

    .tt1-cta-body > p {
        margin: 22px auto 0;
        font-size: clamp(1rem, 1.1vw, 1.15rem);
        line-height: 1.75;
        color: var(--tt1-fg-mute);
        max-width: 56ch;
        text-wrap: pretty;
    }

.tt1-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

    .tt1-cta-row .tt1-btn-white {
        padding: 18px 44px;
        font-size: var(--tt1-body);
    }

.tt1-cta-link {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--tt1-line-strong);
    font-size: var(--tt1-btn);
    font-weight: 600;
    color: var(--tt1-fg);
    transition: color 0.25s ease, border-color 0.25s ease;
}

    .tt1-cta-link:hover {
        color: var(--tt1-accent);
        border-color: var(--tt1-accent);
    }

/* ---- Footer ----------------------------------------------------- */
.tt1-footer {
    background: var(--tt1-deep);
    padding: clamp(44px, 6vw, 64px) var(--tt1-pad-x) 26px;
}

.tt1-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: clamp(28px, 3.4vw, 44px);
    max-width: var(--tt1-wrap-max);
    margin-inline: auto;
    padding-bottom: clamp(32px, 4vw, 44px);
    /* Columns size to their own content. Stretching made every link column as
       tall as the identity block beside it, which is what gave the footer its
       height. */
    align-items: start;
}

/* Pinned rather than left to auto-fit from here up: auto-fit decides the column
   count from the available width, so at some widths the last link column
   wrapped onto a row of its own and the footer grew by a whole row to hold four
   links. One identity column and four link columns, always. */
@media (min-width: 1024px) {
    .tt1-footer-grid {
        grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(0, 1fr));
    }
}

/* The address, under the identity block. Set apart from the paragraph above it
   by a rule rather than by a heading, so it reads as a footnote to the
   identity rather than as a fifth column of navigation. */
.tt1-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    line-height: 1.5;
}

.tt1-footer-contact a {
    color: var(--tt1-accent-hi, #E7C55F);
    text-decoration: none;
    overflow-wrap: anywhere;
}

    .tt1-footer-contact a:hover {
        text-decoration: underline;
    }

.tt1-footer-contact span {
    color: rgba(255, 255, 255, 0.55);
}

.tt1-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .tt1-footer-brand p {
        margin: 0;
        font-size: clamp(14px, 0.9vw, 16px);
        line-height: 1.75;
        color: var(--tt1-fg-faint);
        max-width: 30ch;
    }

.tt1-footer h3 {
    margin: 0 0 16px;
    font-family: var(--tt1-mono);
    font-size: clamp(11px, 0.8vw, 13px);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tt1-accent);
}

.tt1-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: clamp(13px, 0.85vw, 15px);
}

.tt1-footer li a {
    color: var(--tt1-fg-mute);
}

    .tt1-footer li a:hover {
        color: var(--tt1-fg);
    }

.tt1-footer li span {
    color: var(--tt1-fg-faint);
}

.tt1-footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: var(--tt1-wrap-max);
    margin-inline: auto;
    padding-top: 22px;
    border-top: 1px solid var(--tt1-line);
    font-size: clamp(13px, 0.85vw, 15px);
    color: var(--tt1-fg-faint);
}

/* ---- Responsive overrides ---------------------------------------- */
@media (max-width: 991px) {
    .tt1-ministry {
        display: none;
    }

    .tt1-menu-toggle {
        display: inline-flex;
    }

    .tt1-header-left {
        flex: 1 1 auto;
    }

    /* Header bar is only the logo and the hamburger; the links and the account
       actions both live in the panel underneath rather than eating a row each. */
    .tt1-header-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 6px 0 14px;
        background: #16233A;
        border-top: 1px solid var(--tt1-line);
        border-bottom: 1px solid var(--tt1-line);
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }

    .tt1-header.is-menu-open .tt1-header-panel {
        display: flex;
    }

    .tt1-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

        .tt1-nav > a {
            padding: 13px clamp(16px, 3.4vw, 56px);
            font-size: 15px;
        }

    .tt1-header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 8px;
        padding: 14px clamp(16px, 3.4vw, 56px) 0;
        border-top: 1px solid var(--tt1-line);
    }

        .tt1-header-actions > a,
        .tt1-header-actions .tt1-login {
            text-align: center;
            justify-content: center;
        }

    .tt1-journey-grid {
        grid-template-columns: clamp(56px, 15vw, 88px) minmax(0, 1fr);
    }

    .tt1-j-cell.is-a,
    .tt1-j-cell.is-b {
        grid-column: 2;
        justify-self: start;
        text-align: left;
        padding: 0 0 34px 12px;
    }

    .tt1-j-mid {
        grid-column: 1;
    }

        .tt1-j-mid svg {
            display: none;
        }

    .tt1-j-mid {
        min-height: auto;
        align-items: center;
    }

    .tt1-j-node {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

        .tt1-j-node.is-core {
            width: 52px;
            height: 52px;
            font-size: 16px;
        }

    .tt1-outcome-pair {
        grid-template-columns: 1fr;
    }

    .tt1-challenge {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tt1-gap-grid {
        grid-template-columns: 1fr;
    }

    .tt1-gap-intro {
        position: static;
    }

    .tt1-hero h1 {
        font-size: 2rem;
    }

    .tt1-hero-sub {
        font-size: 1rem;
    }

    .tt1-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

        .tt1-hero-cta .tt1-btn {
            justify-content: center;
        }

    .tt1-cards-2 {
        grid-template-columns: 1fr;
    }

    .tt1-elig-grid {
        grid-template-columns: 1fr;
    }

    .tt1-eco-grid {
        grid-template-columns: 1fr;
    }

    .tt1-target-grid {
        grid-template-columns: 1fr;
    }

    .tt1-cta-body h2 {
        font-size: 1.8rem;
    }

    .tt1-stats {
        grid-template-columns: 1fr 1fr;
    }

    .tt1-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .tt1-footer-grid {
        grid-template-columns: 1fr;
    }

    .tt1-footer-legal {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Ambient background glows & watermark  */

/* Container & Base Background */
.tt1-target-enhanced {
    position: relative;
    background-color: #16233A; /* Seamless primary navy background */
    padding: clamp(70px, 9vw, 130px) clamp(24px, 6vw, 96px);
    overflow: hidden;
    color: #FFFFFF;
}

/* Ambient Radial Lighting (Soft glow without hard borders) */
.tt1-ambient-glow {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 182, 46, 0.12) 0%, rgba(22, 35, 58, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Faint Typography Watermark */
.tt1-watermark {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(200px, 32vw, 440px);
    font-weight: 800;
    line-height: 0.8;
    color: #E0B62E;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 1;
}

/* Main Layout Grid */
.tt1-content-grid {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto 1.5fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

/* Left Column: Metric */
.tt1-metric-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tt1-stat-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #E8A33D; /* Accent warm copper */
    margin-bottom: 12px;
}

.tt1-stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(64px, 7vw, 104px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
   /* background: linear-gradient(135deg, #FFFFFF 30%, #E0B62E 100%);
     -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(224, 182, 46, 0.2);*/
}

.tt1-stat-caption {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 32ch;
}

    .tt1-stat-caption strong {
        color: #FFFFFF;
        font-weight: 600;
    }

.tt1-dot {
    color: #E0B62E;
    margin: 0 4px;
}

/* Center Column: Delicate Vertical Line */
.tt1-seamless-divider {
    width: 1px;
    height: 100%;
    min-height: 160px;
    background: linear-gradient(to bottom, transparent, rgba(224, 182, 46, 0.25), transparent);
}

/* Right Column: Editorial Quote */
.tt1-quote-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tt1-quote-text {
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(21px, 2vw, 30px);
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: #FFFFFF;
}

.tt1-highlight {
    background: none;
    color: #E7C55F;
    font-weight: 400;
    border-bottom: 1px solid rgba(231, 197, 95, 0.4);
    padding-bottom: 2px;
}

.tt1-quote-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.tt1-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
}

    .tt1-tag::after {
        content: "—";
        margin-left: 12px;
        color: rgba(255, 255, 255, 0.2);
    }

.tt1-doctrine {
    color: #E8A33D;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Mobile Responsiveness */
@media (max-width: 880px) {
    .tt1-content-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .tt1-seamless-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
        background: linear-gradient(to right, transparent, rgba(224, 182, 46, 0.25), transparent);
    }
}

 



/*option3*/
/* ---- Enhanced Performance Framework Grid -------------------------- */
.tt1-kpi-header {
    margin-bottom: clamp(32px, 4vw, 48px);
}

.tt1-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.tt1-kpi-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--tt1-line-mid);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

    .tt1-kpi-card:hover {
        transform: translateY(-3px);
        border-color: var(--tt1-accent);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .tt1-kpi-card.highlight {
        background: rgba(224, 182, 46, 0.06);
        border-color: var(--tt1-accent);
    }

.tt1-kpi-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tt1-kpi-index {
    font-family: var(--tt1-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--tt1-accent);
    text-transform: uppercase;
    opacity: 0.85;
}

.tt1-kpi-val {
    font-family: var(--tt1-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--tt1-fg);
    line-height: 1;
}

.tt1-kpi-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--tt1-fg);
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.tt1-kpi-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--tt1-fg-mute);
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.tt1-kpi-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid var(--tt1-line);
    font-size: 11px;
}

    .tt1-kpi-meta span {
        color: var(--tt1-fg-faint);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-family: var(--tt1-mono);
        font-size: 10px;
    }

    .tt1-kpi-meta strong {
        color: var(--tt1-fg);
        font-weight: 500;
    }

.tt1-stats-note {
    font-size: 13px;
    color: var(--tt1-fg-mute);
    margin-top: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}






/* ---- Option 3: Grouped Pipeline CSS -------------------------------- */
/* ---- Colored Pipeline Grid --------------------------------------- */
.tt1-pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.tt1-pipeline-col {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--tt1-line-mid);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    /* Column Theme Glows */
    .tt1-pipeline-col.theme-emerald {
        background: linear-gradient(180deg, var(--tt1-emerald-glow) 0%, rgba(255, 255, 255, 0.01) 60%);
        border-color: rgba(107, 209, 136, 0.25);
    }

    .tt1-pipeline-col.theme-blue {
        background: linear-gradient(180deg, rgba(224, 182, 46, 0.1) 0%, rgba(255, 255, 255, 0.01) 60%);
        border-color: rgba(224, 182, 46, 0.25);
    }

    .tt1-pipeline-col.theme-gold {
        background: linear-gradient(180deg, var(--tt1-gold-glow) 0%, rgba(255, 255, 255, 0.01) 60%);
        border-color: rgba(224, 182, 46, 0.25);
    }

/* Header & Badges */
.tt1-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tt1-line-mid);
}

.tt1-step-badge {
    font-family: var(--tt1-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
}

    .tt1-step-badge.badge-emerald {
        background: rgba(107, 209, 136, 0.15);
        color: var(--tt1-emerald);
        border: 1px solid var(--tt1-emerald-border);
    }

    .tt1-step-badge.badge-blue {
        background: rgba(224, 182, 46, 0.15);
        color: var(--tt1-accent);
        border: 1px solid rgba(224, 182, 46, 0.35);
    }

    .tt1-step-badge.badge-gold {
        background: rgba(224, 182, 46, 0.15);
        color: var(--tt1-gold);
        border: 1px solid var(--tt1-gold-border);
    }

.tt1-col-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--tt1-fg);
}

/* Mini Cards */
.tt1-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--tt1-line-mid);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

    .tt1-mini-card:hover {
        transform: translateX(4px);
        background: rgba(255, 255, 255, 0.05);
    }

    /* Card Highlights per Theme */
    .tt1-mini-card.highlight-emerald {
        background: rgba(107, 209, 136, 0.08);
        border-color: var(--tt1-emerald-border);
    }

    .tt1-mini-card.highlight-blue {
        background: rgba(224, 182, 46, 0.12);
        border-color: rgba(224, 182, 46, 0.4);
    }

    .tt1-mini-card.highlight-gold {
        background: rgba(224, 182, 46, 0.08);
        border-color: var(--tt1-gold-border);
    }

/* Dynamic Values & Typography */
.tt1-mini-val {
    font-family: var(--tt1-mono);
    font-size: 24px;
    font-weight: 800;
    min-width: 70px;
    line-height: 1.1;
}

    .tt1-mini-val.val-emerald {
        color: var(--tt1-emerald);
    }

    .tt1-mini-val.val-blue {
        color: var(--tt1-accent);
    }

    .tt1-mini-val.val-gold {
        color: var(--tt1-gold);
    }

.tt1-mini-body h4 {
    margin: 0 0 3px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--tt1-fg);
}

.tt1-mini-body p {
    margin: 0 0 6px 0;
    font-size: 12px;
    color: var(--tt1-fg-mute);
    line-height: 1.4;
}

.tt1-mini-meta {
    display: block;
    font-family: var(--tt1-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tt1-fg-faint);
}

/* ---- Option 4: Executive Bento Grid CSS ---------------------------- */
.tt1-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .tt1-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tt1-bento-grid {
        grid-template-columns: 1fr;
    }
}

.tt1-bento-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--tt1-line-mid);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

    .tt1-bento-card:hover {
        border-color: var(--tt1-accent);
        background: rgba(255, 255, 255, 0.045);
        transform: translateY(-2px);
    }

.tt1-bento-hero {
    grid-column: span 2;
    padding: 28px;
}

.tt1-bento-wide {
    grid-column: span 2;
}

@media (max-width: 576px) {
    .tt1-bento-hero,
    .tt1-bento-wide {
        grid-column: span 1;
    }
}

.tt1-bento-hero.highlight {
    background: rgba(224, 182, 46, 0.06);
    border-color: var(--tt1-accent);
}

.tt1-bento-badge {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--tt1-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--tt1-fg-mute);
    margin-bottom: 12px;
}

    .tt1-bento-badge.accent {
        background: rgba(224, 182, 46, 0.2);
        color: var(--tt1-accent);
    }

.tt1-bento-big-val {
    font-family: var(--tt1-mono);
    font-size: 38px;
    font-weight: 700;
    color: var(--tt1-fg);
    line-height: 1;
    margin-bottom: 8px;
}

.tt1-bento-sm-val {
    font-family: var(--tt1-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--tt1-accent);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.tt1-bento-card h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: var(--tt1-fg);
}

.tt1-bento-card h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: var(--tt1-fg);
}

.tt1-bento-card p {
    margin: 0;
    font-size: 13px;
    color: var(--tt1-fg-mute);
    line-height: 1.4;
}

.tt1-bento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--tt1-line);
    font-size: 11px;
}

    .tt1-bento-footer span {
        font-family: var(--tt1-mono);
        color: var(--tt1-fg-faint);
        text-transform: uppercase;
    }

    .tt1-bento-footer strong {
        color: var(--tt1-fg);
    }

.tt1-bento-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.tt1-bento-meta-pill {
    font-family: var(--tt1-mono);
    font-size: 11px;
    color: var(--tt1-fg-mute);
    border: 1px solid var(--tt1-line-mid);
    padding: 4px 10px;
    border-radius: 20px;
}




/* ---- SVG Icon Alignment & Styling -------------------------------- */
.tt1-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
}

    .tt1-card-icon.icon-emerald {
        background: rgba(107, 209, 136, 0.12);
        color: var(--tt1-emerald);
    }

    .tt1-card-icon.icon-blue {
        background: rgba(224, 182, 46, 0.12);
        color: var(--tt1-accent);
    }

    .tt1-card-icon.icon-gold {
        background: rgba(224, 182, 46, 0.12);
        color: var(--tt1-gold);
    }

.tt1-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
}

.tt1-mini-body {
    flex-grow: 1;
}

.tt1-mini-val {
    font-family: var(--tt1-mono);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}


.tt1-partner-block {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--tt1-line-mid);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tt1-partner-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.tt1-partner-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--tt1-fg);
    letter-spacing: -0.01em;
}


/* ---- Partner Header Text Styling --------------------------------- */
.tt1-partner-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    max-width: 620px;
    margin: 0 auto 32px auto;
}

.tt1-partner-desc {
    margin: 4px 0 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65); /* Subtle muted white for high legibility */
    font-weight: 400;
    letter-spacing: -0.005em;
    max-width: 540px;
}












/* ==========================================================================
   KPI HERO CARDS — added for the image‑inspired top row
   ========================================================================== */

.tt1-kpi-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

@media (max-width: 992px) {
    .tt1-kpi-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tt1-kpi-hero-grid {
        grid-template-columns: 1fr;
    }
}

.tt1-kpi-hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--tt1-line-mid);
    border-radius: 16px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .tt1-kpi-hero-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 16px 16px 0 0;
        background: var(--tt1-accent);
        opacity: 0.6;
        transition: opacity 0.3s ease;
    }

    .tt1-kpi-hero-card:hover {
        transform: translateY(-4px);
        border-color: var(--tt1-accent);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }

        .tt1-kpi-hero-card:hover::after {
            opacity: 1;
        }

    /* Theme‑specific accent colours (override the default bar) */
    .tt1-kpi-hero-card.theme-startup::after {
        background: var(--tt1-emerald);
    }

    .tt1-kpi-hero-card.theme-gov::after {
        background: var(--tt1-accent);
    }

    .tt1-kpi-hero-card.theme-partner::after {
        background: var(--tt1-gold);
    }

    .tt1-kpi-hero-card.theme-solutions::after {
        background: #E8A33D; /* warm copper – you can define a variable if you like */
    }

    .tt1-kpi-hero-card:hover.theme-startup {
        border-color: var(--tt1-emerald-border);
    }

    .tt1-kpi-hero-card:hover.theme-gov {
        border-color: rgba(224, 182, 46, 0.5);
    }

    .tt1-kpi-hero-card:hover.theme-partner {
        border-color: var(--tt1-gold-border);
    }

    .tt1-kpi-hero-card:hover.theme-solutions {
        border-color: #E8A33D;
    }

.tt1-kpi-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--tt1-accent);
    flex-shrink: 0;
}

.tt1-kpi-hero-card.theme-startup .tt1-kpi-hero-icon {
    color: var(--tt1-emerald);
    background: rgba(107, 209, 136, 0.12);
}

.tt1-kpi-hero-card.theme-gov .tt1-kpi-hero-icon {
    color: var(--tt1-accent);
    background: rgba(224, 182, 46, 0.12);
}

.tt1-kpi-hero-card.theme-partner .tt1-kpi-hero-icon {
    color: var(--tt1-gold);
    background: rgba(224, 182, 46, 0.12);
}

.tt1-kpi-hero-card.theme-solutions .tt1-kpi-hero-icon {
    color: #E8A33D;
    background: rgba(232, 163, 61, 0.12);
}

.tt1-kpi-hero-number {
    font-family: var(--tt1-mono);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--tt1-fg);
    margin-bottom: 6px;
}

.tt1-kpi-hero-plus {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--tt1-fg-mute);
    margin-left: 2px;
}

.tt1-kpi-hero-label {
    margin: 0 0 4px 0;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 600;
    color: var(--tt1-fg);
    line-height: 1.3;
}

.tt1-kpi-hero-desc {
    margin: 0;
    font-size: clamp(13px, 0.85vw, 15px);
    line-height: 1.5;
    color: var(--tt1-fg-mute);
    flex-grow: 1;
}

.tt1-kpi-hero-source {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--tt1-line);
    font-family: var(--tt1-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tt1-fg-faint);
    width: 100%;
}

/* ---- Small tweaks for the existing pipeline and partner block ------- */
/* Ensure the partner block sits nicely below the pipeline */
.tt1-partner-block {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--tt1-line-mid);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tt1-partner-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 620px;
    margin: 0 auto 0 auto;
}

.tt1-partner-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--tt1-fg);
    letter-spacing: -0.01em;
}

.tt1-partner-desc {
    margin: 4px 0 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    letter-spacing: -0.005em;
    max-width: 540px;
}

/* Ensure the mini-meta used in the partner header inherits the existing style */
.tt1-mini-meta {
    display: block;
    font-family: var(--tt1-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tt1-fg-faint);
}

/* Tweak for the pipeline grid to keep it consistent with the new hero */
.tt1-pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Ensure existing mini cards keep their layout */
.tt1-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--tt1-line-mid);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

    .tt1-mini-card:hover {
        transform: translateX(4px);
        background: rgba(255, 255, 255, 0.05);
    }




 