/* ================================================================
   TRUFFLELINK — Light Premium Trading Platform
   Sora (headings) · Inter (body)
   Palette: warm white / cream / dark brown earth
   ================================================================ */

/* ---------- design tokens ---------- */
:root {
    --tl-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --tl-display: 'Sora', var(--tl-sans);

    /* Light warm earth palette */
    --tl-black:      #0B0E13;      /* kept dark — used for button text on gold buttons */
    --tl-surface-1:  #FAFAF8;      /* near-white warm */
    --tl-surface-2:  #F5F0E8;      /* warm cream */
    --tl-surface-3:  #EDE6D8;      /* warm tan */
    --tl-surface-4:  #E3D9C8;      /* muted tan */
    --tl-gold:       #C4843B;      /* darker gold — readable on light bg */
    --tl-gold-l:     #D4A373;      /* medium gold — hover state */
    --tl-gold-d:     #8B5E2A;      /* dark warm brown */
    --tl-cream:      #1A0D06;      /* very dark brown — heading text */
    --tl-cream-d:    #3D2010;
    --tl-white:      #FFFFFF;
    --tl-txt:        #1A0D06;      /* primary text: dark brown */
    --tl-txt-m:      #5C3A1E;      /* medium brown */
    --tl-txt-d:      #8B6545;      /* lighter warm brown */
    --tl-border:     rgba(139, 94, 42, .15);
    --tl-border-l:   rgba(139, 94, 42, .30);
    --tl-glass:      rgba(245, 240, 232, .90);

    --tl-shadow-s:  0 2px 8px rgba(26, 13, 6, .08);
    --tl-shadow-m:  0 8px 24px rgba(26, 13, 6, .12);
    --tl-shadow-l:  0 16px 48px rgba(26, 13, 6, .16);
    --tl-shadow-glow: 0 0 40px rgba(196, 132, 59, .12);

    --tl-radius:    12px;
    --tl-radius-l:  18px;
    --tl-ease:      cubic-bezier(.4, 0, .2, 1);
    --tl-ease-out:  cubic-bezier(.16, 1, .3, 1);
}


/* ---------- page base ---------- */
.tl-page {
    background: #FFFFFF;
    color: var(--tl-txt);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}


/* ================================================================
   REVEAL SYSTEM
   ================================================================ */
.tl-reveal {
    opacity: 0;
    transform: translateY(32px);
    will-change: opacity, transform;
    transition: opacity .7s var(--tl-ease-out), transform .7s var(--tl-ease-out);
}
.tl-reveal[data-reveal="fade-right"] { transform: translateX(-36px); }
.tl-reveal[data-reveal="fade-left"]  { transform: translateX(36px); }
.tl-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ================================================================
   SHARED ELEMENTS
   ================================================================ */
.tl-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font: 600 .7rem/1 var(--tl-sans);
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--tl-gold);
    margin-bottom: 16px;
}
.tl-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--tl-gold);
}

.tl-heading {
    font: 600 clamp(1.8rem, 3.5vw, 2.8rem)/1.15 var(--tl-display);
    color: var(--tl-cream);
    margin: 0 0 16px;
    letter-spacing: -.02em;
}

.tl-subtext {
    font: 400 1rem/1.7 var(--tl-sans);
    color: var(--tl-txt-m);
    max-width: 560px;
}

.tl-section-head {
    margin-bottom: 56px;
}
.tl-section-head--center {
    text-align: center;
}
.tl-section-head--center .tl-subtext {
    margin-left: auto;
    margin-right: auto;
}
.tl-section-head--center .tl-label::before {
    display: none;
}


/* ================================================================
   BUTTONS
   ================================================================ */
.tl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    font: 500 .88rem/1 var(--tl-sans);
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: .02em;
    transition: transform .3s var(--tl-ease-out),
                box-shadow .3s var(--tl-ease-out),
                background .25s ease,
                border-color .25s ease,
                color .25s ease;
    position: relative;
    white-space: nowrap;
}
.tl-btn svg { transition: transform .3s ease; flex-shrink: 0; }
.tl-btn:hover svg { transform: translateX(3px); }

.tl-btn--gold {
    background: var(--tl-gold);
    color: #FFFFFF;
    font-weight: 600;
}
.tl-btn--gold:hover {
    background: var(--tl-gold-d);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 94, 42, .30);
}

.tl-btn--outline {
    background: transparent;
    color: var(--tl-gold);
    box-shadow: inset 0 0 0 1px var(--tl-border-l);
}
.tl-btn--outline:hover {
    background: rgba(196, 132, 59, .08);
    box-shadow: inset 0 0 0 1px var(--tl-gold);
    color: var(--tl-gold);
    transform: translateY(-2px);
}

.tl-btn--white {
    background: var(--tl-white);
    color: var(--tl-black);
    font-weight: 600;
}
.tl-btn--white:hover {
    background: var(--tl-surface-1);
    color: var(--tl-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 13, 6, .12);
}

/* ghost used on light (cream) sections */
.tl-btn--ghost {
    background: transparent;
    color: var(--tl-txt);
    box-shadow: inset 0 0 0 1px var(--tl-border-l);
}
.tl-btn--ghost:hover {
    background: rgba(139, 94, 42, .06);
    box-shadow: inset 0 0 0 1px var(--tl-gold);
    color: var(--tl-cream);
    transform: translateY(-2px);
}

.tl-btn--sm {
    padding: 9px 18px;
    font-size: .8rem;
}


/* ================================================================
   HERO — full-width with highly visible background image
   ================================================================ */
.tl-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.tl-hero__bg-img {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
/* Very light dim — 5-10% — image stays highly visible */
.tl-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, .08) 0%,
        rgba(0, 0, 0, .05) 40%,
        rgba(0, 0, 0, .18) 100%
    );
}
.tl-hero__bg-grain {
    position: absolute;
    inset: 0;
    opacity: .02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

/* subtle grid pattern */
.tl-hero__grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .02;
    background-image:
        linear-gradient(rgba(212, 163, 115, .2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 163, 115, .2) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.tl-hero__inner {
    position: relative;
    z-index: 2;
    padding: 160px 24px 120px;
    max-width: 800px;
    text-align: center;
}

.tl-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font: 500 .72rem/1 var(--tl-sans);
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--tl-gold-l);
    margin-bottom: 24px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}
.tl-hero__eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--tl-gold-l);
}

/* Text is white over the image — text-shadow gives readability */
.tl-hero__title {
    font: 700 clamp(2.6rem, 5.5vw, 4.2rem)/1.1 var(--tl-display);
    color: var(--tl-white);
    margin: 0 0 22px;
    letter-spacing: -.03em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .70), 0 1px 4px rgba(0, 0, 0, .90);
}
.tl-hero__title em {
    font-style: normal;
    color: var(--tl-gold-l);
}

.tl-hero__subtitle {
    font: 400 1.08rem/1.75 var(--tl-sans);
    color: rgba(255, 255, 255, .88);
    max-width: 560px;
    margin: 0 auto 36px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .65);
}

.tl-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}


/* hero bottom bar — keep dark for contrast on any image */
.tl-hero__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(11, 14, 19, .55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 163, 115, .12);
}
.tl-hero__bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.tl-hero__bar-item {
    font: 500 .78rem/1 var(--tl-sans);
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .03em;
}
.tl-hero__bar-item i { color: var(--tl-gold-l); font-size: .8rem; }
.tl-hero__bar-sep {
    width: 1px;
    height: 14px;
    background: var(--tl-border-l);
}


/* ================================================================
   MARKETPLACE PREVIEW
   ================================================================ */
.tl-market {
    padding: 100px 0;
    background: var(--tl-surface-1);
    border-top: 1px solid var(--tl-border);
}

/* filter bar */
.tl-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.tl-filters__label {
    font: 500 .78rem/1 var(--tl-sans);
    color: var(--tl-txt-d);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-right: 6px;
}
.tl-filter-btn {
    padding: 7px 16px;
    font: 500 .78rem/1 var(--tl-sans);
    color: var(--tl-txt-m);
    background: var(--tl-white);
    border: 1px solid var(--tl-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all .25s ease;
    letter-spacing: .02em;
}
.tl-filter-btn:hover {
    border-color: var(--tl-border-l);
    color: var(--tl-txt);
}
.tl-filter-btn.is-active {
    background: rgba(196, 132, 59, .10);
    border-color: var(--tl-gold);
    color: var(--tl-gold-d);
}

/* product grid */
.tl-market__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tl-market-card {
    background: var(--tl-white);
    border: 1px solid var(--tl-border);
    border-radius: var(--tl-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--tl-ease-out),
                box-shadow .4s var(--tl-ease-out),
                border-color .3s ease;
}
.tl-market-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tl-shadow-l), var(--tl-shadow-glow);
    border-color: var(--tl-border-l);
    color: inherit;
}

.tl-market-card__img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--tl-surface-3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tl-market-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--tl-ease-out);
}
.tl-market-card:hover .tl-market-card__img img { transform: scale(1.04); }

.tl-market-card__placeholder {
    font-size: 2.2rem;
    color: var(--tl-surface-4);
}

.tl-market-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}
.tl-market-card__badge {
    font: 600 .62rem/1 var(--tl-sans);
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}
/* keep dark bg on badges so they read over any product image */
.tl-market-card__badge--species {
    background: rgba(11, 14, 19, .75);
    color: var(--tl-gold-l);
    border: 1px solid rgba(212, 163, 115, .2);
}
.tl-market-card__badge--cert {
    background: rgba(74, 222, 128, .15);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, .2);
}

.tl-market-card__body {
    padding: 18px 18px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tl-market-card__body h3 {
    font: 600 1rem/1.25 var(--tl-display);
    color: var(--tl-cream);
    margin: 0 0 8px;
}

.tl-market-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}
.tl-market-card__meta-item {
    font: 400 .75rem/1 var(--tl-sans);
    color: var(--tl-txt-d);
    display: flex;
    align-items: center;
    gap: 5px;
}
.tl-market-card__meta-item i {
    color: var(--tl-gold);
    font-size: .7rem;
}

.tl-market-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-top: 1px solid var(--tl-border);
    margin-top: auto;
}
.tl-market-card__price {
    font: 700 1.1rem/1 var(--tl-display);
    color: var(--tl-gold-d);
}
.tl-market-card__price small {
    font-weight: 400;
    font-size: .72rem;
    color: var(--tl-txt-d);
}
.tl-market-card__cta {
    font: 500 .75rem/1 var(--tl-sans);
    color: var(--tl-gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .3s ease;
}
.tl-market-card:hover .tl-market-card__cta { gap: 8px; }

/* empty state */
.tl-market-empty {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}
.tl-market-empty i {
    font-size: 2.4rem;
    color: var(--tl-surface-4);
    margin-bottom: 16px;
    display: block;
}
.tl-market-empty h3 {
    font: 600 1.2rem/1.2 var(--tl-display);
    color: var(--tl-txt-m);
    margin: 0 0 6px;
}
.tl-market-empty p {
    font: 400 .88rem/1.6 var(--tl-sans);
    color: var(--tl-txt-d);
    margin: 0;
}

.tl-market__cta {
    text-align: center;
    margin-top: 44px;
}


/* ================================================================
   SUPPLY CHAIN — horizontal timeline
   ================================================================ */
.tl-chain {
    padding: 100px 0;
    background: #FFFFFF;
    border-top: 1px solid var(--tl-border);
}

.tl-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 16px;
}

/* connecting line */
.tl-timeline__line {
    position: absolute;
    top: 38px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: var(--tl-surface-3);
    z-index: 0;
}
.tl-timeline__line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--tl-gold), var(--tl-gold-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.4s var(--tl-ease-out);
}
.tl-timeline__line.is-active::after { transform: scaleX(1); }

.tl-timeline__step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 16px;
}

.tl-timeline__node {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--tl-white);
    border: 2px solid var(--tl-border-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--tl-gold);
    transition: all .4s var(--tl-ease-out);
    position: relative;
}
.tl-timeline__step:hover .tl-timeline__node {
    background: var(--tl-gold);
    border-color: var(--tl-gold);
    color: var(--tl-white);
    transform: scale(1.12);
    box-shadow: 0 0 24px rgba(196, 132, 59, .25);
}

.tl-timeline__num {
    font: 700 .65rem/1 var(--tl-sans);
    color: var(--tl-gold);
    letter-spacing: .12em;
    margin-bottom: 12px;
    opacity: .6;
}

.tl-timeline__step h3 {
    font: 600 .95rem/1.25 var(--tl-display);
    color: var(--tl-cream);
    margin: 0 0 8px;
}
.tl-timeline__step p {
    font: 400 .8rem/1.6 var(--tl-sans);
    color: var(--tl-txt-d);
    margin: 0;
}


/* ================================================================
   QUALITY & CERTIFICATION
   ================================================================ */
.tl-quality {
    padding: 100px 0;
    background: var(--tl-surface-1);
    border-top: 1px solid var(--tl-border);
}

.tl-quality__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tl-cert-card {
    background: var(--tl-white);
    border: 1px solid var(--tl-border);
    border-radius: var(--tl-radius);
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--tl-ease-out),
                box-shadow .4s var(--tl-ease-out),
                border-color .3s ease;
}
.tl-cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tl-gold), var(--tl-gold-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--tl-ease-out);
}
.tl-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tl-shadow-l), var(--tl-shadow-glow);
    border-color: var(--tl-border-l);
}
.tl-cert-card:hover::before { transform: scaleX(1); }

.tl-cert-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(196, 132, 59, .10);
    border: 1px solid var(--tl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--tl-gold);
    margin-bottom: 18px;
    transition: all .3s var(--tl-ease-out);
}
.tl-cert-card:hover .tl-cert-card__icon {
    background: var(--tl-gold);
    color: var(--tl-white);
    border-color: var(--tl-gold);
}

.tl-cert-card h3 {
    font: 600 .92rem/1.25 var(--tl-display);
    color: var(--tl-cream);
    margin: 0 0 8px;
}
.tl-cert-card p {
    font: 400 .8rem/1.6 var(--tl-sans);
    color: var(--tl-txt-d);
    margin: 0;
}


/* ================================================================
   PLATFORM — buyers / suppliers split
   ================================================================ */
.tl-platform {
    padding: 100px 0;
    background: #FFFFFF;
    border-top: 1px solid var(--tl-border);
}

.tl-platform__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tl-platform__col {
    background: var(--tl-surface-2);
    border: 1px solid var(--tl-border);
    border-radius: var(--tl-radius-l);
    padding: 40px 36px;
    transition: border-color .3s ease;
}
.tl-platform__col:hover {
    border-color: var(--tl-border-l);
}

.tl-platform__col-label {
    font: 600 .68rem/1 var(--tl-sans);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--tl-gold);
    margin-bottom: 14px;
}
.tl-platform__col h3 {
    font: 600 1.35rem/1.2 var(--tl-display);
    color: var(--tl-cream);
    margin: 0 0 10px;
    letter-spacing: -.01em;
}
.tl-platform__col > p {
    font: 400 .88rem/1.65 var(--tl-sans);
    color: var(--tl-txt-m);
    margin: 0 0 24px;
}

.tl-platform__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tl-platform__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font: 400 .85rem/1.5 var(--tl-sans);
    color: var(--tl-txt);
}
.tl-platform__list li i {
    color: var(--tl-gold);
    font-size: .75rem;
    margin-top: 4px;
    flex-shrink: 0;
}


/* ================================================================
   LIVE DATA — stats row
   ================================================================ */
.tl-data {
    padding: 80px 0;
    background: var(--tl-surface-2);
    border-top: 1px solid var(--tl-border);
}

.tl-data__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tl-data__card {
    background: var(--tl-white);
    border: 1px solid var(--tl-border);
    border-radius: var(--tl-radius);
    padding: 28px 24px;
    text-align: center;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.tl-data__card:hover {
    border-color: var(--tl-border-l);
    box-shadow: var(--tl-shadow-glow);
}

.tl-data__num {
    font: 700 clamp(2rem, 3.5vw, 2.8rem)/1 var(--tl-display);
    color: var(--tl-gold-d);
    letter-spacing: -.02em;
}
.tl-data__label {
    display: block;
    margin-top: 8px;
    font: 500 .75rem/1 var(--tl-sans);
    color: var(--tl-txt-d);
    text-transform: uppercase;
    letter-spacing: .1em;
}


/* ================================================================
   CTA
   ================================================================ */
.tl-cta {
    position: relative;
    padding: 100px 0;
    background: var(--tl-surface-2);
    border-top: 1px solid var(--tl-border);
    overflow: hidden;
}
.tl-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.tl-cta__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.tl-cta__glow--1 {
    width: 500px;
    height: 500px;
    background: rgba(196, 132, 59, .08);
    top: -30%;
    right: -10%;
}
.tl-cta__glow--2 {
    width: 350px;
    height: 350px;
    background: rgba(196, 132, 59, .05);
    bottom: -20%;
    left: -5%;
}

.tl-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}
.tl-cta__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .tl-market__grid { grid-template-columns: repeat(2, 1fr); }
    .tl-quality__grid { grid-template-columns: repeat(2, 1fr); }
    .tl-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .tl-timeline__line { display: none; }
    .tl-platform__grid { grid-template-columns: 1fr; }
    .tl-data__row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .tl-hero__inner { padding-top: 120px; padding-bottom: 80px; }
    .tl-hero__actions { flex-direction: column; align-items: center; max-width: 300px; margin-left: auto; margin-right: auto; }
    .tl-btn { width: 100%; justify-content: center; }
    .tl-hero__bar-sep { display: none; }
    .tl-hero__bar-inner { gap: 14px; justify-content: center; }

    .tl-market,
    .tl-chain,
    .tl-quality,
    .tl-platform,
    .tl-data,
    .tl-cta { padding: 64px 0; }

    .tl-market__grid { grid-template-columns: 1fr; }
    .tl-quality__grid { grid-template-columns: 1fr; }
    .tl-platform__col { padding: 28px 24px; }

    .tl-cta__actions {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .tl-data__row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .tl-container { padding: 0 16px; }
    .tl-hero__title { font-size: 2rem; }
    .tl-heading { font-size: 1.5rem; }
    .tl-timeline { grid-template-columns: 1fr; }
    .tl-data__row { grid-template-columns: 1fr; }
    .tl-filters { gap: 6px; }
}
