/**
 * Section 10 — Print-shop precision
 * Dark editorial section with rotating jersey back panel
 */
.tnk-s10 {
    --tnk-red: #E31E24;
    --tnk-black: #131313;
    --tnk-bg: #0e0e10;
    --tnk-card-dark: #1a1a1d;
    --tnk-line: rgba(255,255,255,0.12);
    --tnk-line-strong: rgba(255,255,255,0.18);
    --tnk-muted: rgba(255,255,255,0.5);
    --tnk-faint: rgba(255,255,255,0.4);
    --tnk-ease: cubic-bezier(0.4, 0, 0.2, 1);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--tnk-bg);
    color: #fff;
    padding: 112px 24px;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow: hidden;
}
.tnk-s10 *, .tnk-s10 *::before, .tnk-s10 *::after { box-sizing: border-box; }
.tnk-s10__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* faint cutting-mat grid */
.tnk-s10::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Two-column grid */
.tnk-s10__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* COPY COLUMN */
.tnk-s10__copy { max-width: 480px; }
.tnk-s10__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.tnk-s10__eyebrow-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tnk-red);
}
.tnk-s10__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.98;
    margin: 0 0 20px;
    color: #fff;
}
.tnk-s10__title em {
    font-style: normal;
    color: var(--tnk-red);
}
.tnk-s10__sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    margin: 0 0 32px;
    max-width: 420px;
}

/* Feature list */
.tnk-s10__features {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tnk-s10__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.tnk-s10__feature-tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--tnk-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tnk-s10__feature-tick svg { width: 10px; height: 10px; }
.tnk-s10__feature strong { color: #fff; font-weight: 700; }

/* CTA row */
.tnk-s10__cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.tnk-s10__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #fff;
    color: var(--tnk-black);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none !important;
    transition: gap 0.25s var(--tnk-ease), transform 0.25s var(--tnk-ease), box-shadow 0.25s var(--tnk-ease);
}
.tnk-s10__cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s var(--tnk-ease);
}
.tnk-s10__cta:hover {
    gap: 14px;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}
.tnk-s10__cta:hover svg { transform: translateX(3px); }

.tnk-s10__price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.tnk-s10__price strong {
    color: #fff;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* Progress dots */
.tnk-s10__dots {
    display: flex;
    gap: 6px;
    margin-top: 28px;
}
.tnk-s10__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: background-color 0.3s var(--tnk-ease), width 0.3s var(--tnk-ease);
}
.tnk-s10__dot.is-on {
    background: var(--tnk-red);
    width: 22px;
    border-radius: 99px;
}

/* ============================================================================
   JERSEY PANEL — cream card with arched name + huge number
   ============================================================================ */
.tnk-s10__jersey-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.tnk-s10__jersey {
    background: linear-gradient(180deg, #f5f1ea 0%, #ebe4d8 100%);
    border-radius: 10px;
    padding: 36px 30px 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
/* subtle weave texture */
.tnk-s10__jersey::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 3px),
        repeating-linear-gradient(-45deg, transparent 0, transparent 2px, rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 3px);
    border-radius: 10px;
    pointer-events: none;
}
/* collar suggestion at the top */
.tnk-s10__jersey::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: var(--tnk-bg);
    border-radius: 0 0 40px 40px;
}
.tnk-s10__jersey-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Arched name (SVG textPath) */
.tnk-s10__arc-name {
    width: 100%;
    height: 64px;
    margin-bottom: -4px;
    transition: opacity 0.3s ease;
}
.tnk-s10__arc-name svg { width: 100%; height: 100%; display: block; }

/* Huge jersey number */
.tnk-s10__num {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 200px;
    color: #1a1a1d;
    line-height: 0.85;
    letter-spacing: -0.04em;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 0 rgba(0,0,0,0.08);
    transition: opacity 0.3s ease;
    font-variant-numeric: tabular-nums;
}

/* Country line at bottom */
.tnk-s10__bottom {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.tnk-s10__flag {
    width: 28px;
    height: 20px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
}
.tnk-s10__flag svg { display: block; width: 100%; height: 100%; }
.tnk-s10__country {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1d;
    transition: opacity 0.3s ease;
}

/* Fade state during data swap */
.tnk-s10__fade { opacity: 0 !important; }

/* Tablet */
@media (max-width: 1024px) {
    .tnk-s10 { padding: 88px 24px; }
    .tnk-s10__grid { gap: 56px; }
    .tnk-s10__num { font-size: 170px; }
}

/* Mobile — stack, jersey FIRST */
@media (max-width: 720px) {
    .tnk-s10 { padding: 72px 16px; }
    .tnk-s10__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .tnk-s10__copy { max-width: 100%; order: 2; }
    .tnk-s10__jersey-wrap { order: 1; }

    .tnk-s10__title { font-size: clamp(32px, 8vw, 44px); }
    .tnk-s10__sub { font-size: 14px; max-width: none; }
    .tnk-s10__cta { width: 100%; justify-content: center; padding: 14px 24px; }
    .tnk-s10__cta-row { width: 100%; }
    .tnk-s10__price { margin-top: 4px; }
    .tnk-s10__num { font-size: 150px; }
    .tnk-s10__arc-name { height: 54px; }
}

/* Small mobile */
@media (max-width: 420px) {
    .tnk-s10 { padding: 56px 14px; }
    .tnk-s10__jersey { padding: 28px 22px 22px; border-radius: 8px; }
    .tnk-s10__jersey::after { width: 64px; height: 14px; }
    .tnk-s10__num { font-size: 124px; }
    .tnk-s10__arc-name { height: 48px; }
    .tnk-s10__flag { width: 24px; height: 17px; }
    .tnk-s10__country { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .tnk-s10__arc-name, .tnk-s10__num, .tnk-s10__flag,
    .tnk-s10__country, .tnk-s10__dot { transition: none !important; }
}
