/* ============================================
   VARIABLES
============================================ */
:root {
    --bg:        #0a0e1a;
    --bg-alt:    #0d1221;
    --bg-card:   #111827;
    --bg-card-h: #1a2236;
    --green:     #00ff88;
    --teal:      #00d4d4;
    --gold-lt:   #f5d56e;
    --gold-md:   #c9902a;
    --gold-dk:   #6b4f1a;
    --text:      #ffffff;
    --text-2:    #c4cde0;
    --text-3:    #7888a8;
    --border:    rgba(0,255,136,0.14);
    --border-c:  rgba(255,255,255,0.07);
    --shadow:    0 4px 24px rgba(0,0,0,0.45);
    --f-body:    'Inter', system-ui, sans-serif;
    --f-head:    'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Print utilities */
.print-only { display: none; }

/* ============================================
   IMAGE UTILITIES
============================================ */
/* Headshot in player card */
.card-avatar-zone {
    flex: 0 0 170px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    margin: 4px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.3));
}
.card-headshot {
    width: auto;
    max-width: 100%;
    height: 170px;
    object-fit: contain;
    object-position: center top;
    border-radius: 4px;
    display: block;
}

/* Xero logo badge in card top */
.card-club-wrap {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}
.card-club-badge-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

/* LinkedIn logo-only chip */
.contact-chip--li {
    padding: 6px 12px;
}
.chip-logo-li {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
    /* LinkedIn logo is blue on white — invert for dark bg */
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.2s;
}
.contact-chip--li:hover .chip-logo-li {
    opacity: 1;
    filter: none;
}

/* Email icon in contact chip */
.chip-email-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: currentColor;
}

/* Timeline company logos */
.tl-company-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.tl-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    border-radius: 4px;
    padding: 3px 8px;
    width: 68px;
    height: 24px;
    flex-shrink: 0;
}
.tl-logo-pill--dark {
    background: #ffffff;
}
.tl-logo {
    width: 100%;
    height: 100%;
    max-height: 17px;
    object-fit: contain;
    display: block;
}
.tl-logo--invert {
    filter: none; /* Jetstar has orange star + black text — show on white pill */
}
.tl-logo--xero {
    max-height: 10px;
}

/* Semi-pro headshot + club logos row */
.fb-player-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.fb-headshot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 2px solid rgba(0,255,136,0.3);
    flex-shrink: 0;
}
.fb-club-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    margin-bottom: 12px;
}
.fb-club-logo {
    height: 40px;
    width: auto;
    max-width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

/* Football Practice logo */
.fb-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.fb-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ============================================
   SECTION EYEBROW LABELS
============================================ */
.section-eyebrow {
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--f-head);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 48px;
}

/* ============================================
   HERO
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    padding: 80px 0 64px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,255,136,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0,255,136,0.055) 0%, transparent 68%);
    pointer-events: none;
}

.card-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.card-disclaimer {
    font-size: 10px;
    color: var(--text-3);
    text-align: center;
    max-width: 280px;
    line-height: 1.5;
    opacity: 0.65;
}

.hero-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ---- Player Card ---- */
.player-card {
    width: 280px;
    height: 418px;
    border-radius: 14px;
    background: linear-gradient(
        155deg,
        var(--gold-dk) 0%,
        var(--gold-md) 18%,
        var(--gold-lt) 35%,
        #e8c54a     48%,
        var(--gold-md) 62%,
        #a07020     78%,
        var(--gold-md) 90%,
        var(--gold-dk) 100%
    );
    box-shadow:
        0 0 70px rgba(201,144,42,0.3),
        0 24px 70px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.28);
    padding: 14px;
    transform: rotate(-2.5deg);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    flex-shrink: 0;
}
.player-card:hover { transform: rotate(0deg) scale(1.025); }

.card-inner {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(155deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.03) 50%, rgba(0,0,0,0.18) 100%);
    display: flex;
    flex-direction: column;
    padding: 12px 12px 8px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.card-rating-block { display: flex; flex-direction: column; align-items: flex-start; }

.card-rating {
    font-family: var(--f-head);
    font-size: 54px;
    font-weight: 900;
    color: rgba(255,255,255,0.96);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.card-pos-code {
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,0.82);
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.card-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.card-badge-row {
    display: flex;
    align-items: center;
    gap: 5px;
}
.card-badge-lbl {
    font-family: var(--f-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-lt);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.card-flag { font-size: 26px; line-height: 1; }
.card-badge-note {
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    text-align: right;
    line-height: 1.3;
    margin-top: 2px;
}

.card-avatar-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-silhouette {
    width: 130px;
    height: 150px;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
}

.card-name {
    font-family: var(--f-head);
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    color: rgba(255,255,255,0.96);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    padding: 7px 0;
    border-top: 1px solid rgba(255,255,255,0.32);
    border-bottom: 1px solid rgba(255,255,255,0.32);
    margin-bottom: 7px;
}

.card-attr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px 0;
}
.card-attr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.ca-val {
    font-family: var(--f-head);
    font-size: 19px;
    font-weight: 900;
    color: rgba(255,255,255,0.96);
    line-height: 1;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
.ca-lbl {
    font-family: var(--f-head);
    font-size: 8.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.68);
    letter-spacing: 0.4px;
}

/* ---- Hero Info ---- */
.hero-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.eyebrow {
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--green);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green);
    flex-shrink: 0;
}

.hero-name {
    font-family: var(--f-head);
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.02;
}

.hero-pos-title {
    font-family: var(--f-head);
    font-size: 21px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-tagline {
    font-family: var(--f-head);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    border-left: 3px solid var(--green);
    padding-left: 16px;
}
.hero-tagline-sub {
    color: var(--text-3);
    font-weight: 400;
    font-style: italic;
}

.hero-bio {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 560px;
}

.hero-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border-c);
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-2);
    font-size: 13px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.contact-chip:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(0,255,136,0.05);
}

.contact-chip--pdf {
    cursor: pointer;
    font-family: var(--f-body);
}

.transfer-target {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 16px 22px;
    border: 1px solid rgba(0,255,136,0.38);
    border-radius: 8px;
    background: rgba(0,255,136,0.055);
    max-width: fit-content;
}
.transfer-badge {
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
}
.transfer-role {
    font-family: var(--f-head);
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.4px;
}
.transfer-club {
    font-size: 13px;
    color: var(--text-2);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-tag {
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 0.4px;
}

/* ============================================
   CAREER STATISTICS
============================================ */
.stats-section {
    background: var(--bg-alt);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border-c);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
}

.stat-card {
    background: var(--bg-card);
    padding: 28px 16px;
    text-align: center;
    position: relative;
    transition: background 0.2s;
    cursor: default;
}
.stat-card:hover { background: var(--bg-card-h); }
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}
.stat-card:hover::after { width: 56%; }

.stat-num {
    font-family: var(--f-head);
    font-size: 40px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-lbl {
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.stat-ctx {
    font-size: 11px;
    color: var(--text-3);
    line-height: 1.4;
}

/* ============================================
   ATTRIBUTES
============================================ */
.attributes-section {
    background: var(--bg);
    padding: 80px 0;
}

.attributes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 8px;
}

.radar-wrap {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}
.radar-wrap::before {
    content: '';
    position: absolute;
    inset: -24px;
    background: radial-gradient(circle, rgba(0,255,136,0.035) 0%, transparent 70%);
    pointer-events: none;
}

/* Attr bars */
.attr-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.attr-row { display: flex; flex-direction: column; gap: 7px; }
.attr-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.attr-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
}
.attr-score {
    font-family: var(--f-head);
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    min-width: 34px;
    text-align: right;
}
.attr-track {
    height: 5px;
    background: rgba(255,255,255,0.07);
    border-radius: 3px;
    overflow: hidden;
}
.attr-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--teal), var(--green));
    transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0,255,136,0.35);
}

.attr-disclaimer {
    font-size: 10px;
    color: var(--text-3);
    opacity: 0.65;
    margin-top: 20px;
    line-height: 1.5;
}

.skills-list {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-3);
}

/* ============================================
   SCOUTING REPORT
============================================ */
.scouting-section {
    background: var(--bg-alt);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.scouting-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
}

.big-quote {
    font-family: var(--f-head);
    font-size: 130px;
    font-weight: 900;
    color: rgba(0,255,136,0.12);
    line-height: 0.55;
    margin-bottom: 6px;
    user-select: none;
    pointer-events: none;
}

.scouting-p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.82;
    margin-bottom: 18px;
}
.scouting-p:last-child { margin-bottom: 0; }

.scouts-verdict {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px;
}
.verdict-head {
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.verdict-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 13px;
    line-height: 1.5;
}
.verdict-item:last-child { margin-bottom: 0; }
.vi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ============================================
   CLUB HISTORY / TIMELINE
============================================ */
.history-section {
    background: var(--bg);
    padding: 80px 0;
}

.timeline {
    position: relative;
    margin-top: 8px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 106px;
    top: 10px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0,255,136,0.4), rgba(0,255,136,0.04));
}

.tl-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 36px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-c);
    position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-item::before {
    content: '';
    position: absolute;
    left: 101px;
    top: 34px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px rgba(0,255,136,0.5);
}

.tl-period {
    font-family: var(--f-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--green);
    line-height: 1.5;
    padding-top: 4px;
    text-align: right;
    padding-right: 22px;
}

.tl-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.tl-role {
    font-family: var(--f-head);
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.3px;
}
.tl-company {
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tl-summary {
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: 12px;
}

.tl-achiev {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tl-achiev li {
    font-size: 13.5px;
    color: var(--text-2);
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}
.tl-achiev li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 11px;
    top: 1px;
}

/* ============================================
   SEASON HIGHLIGHTS
============================================ */
.highlights-section {
    background: var(--bg-alt);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.hl-card {
    background: var(--bg-card);
    border: 1px solid var(--border-c);
    border-radius: 10px;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hl-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.hl-card:hover {
    border-color: rgba(0,255,136,0.22);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}
.hl-card:hover::before { transform: scaleX(1); }

.hl-num {
    font-family: var(--f-head);
    font-size: 38px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}
.hl-title {
    font-family: var(--f-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px;
    line-height: 1.25;
}
.hl-desc {
    font-size: 12.5px;
    color: var(--text-3);
    line-height: 1.6;
    margin-bottom: 14px;
}
.hl-club {
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--teal);
    text-transform: uppercase;
}

/* ============================================
   FOOTBALL SECTION
============================================ */
.football-section {
    background: var(--bg);
    padding: 80px 0;
}

.football-intro {
    font-size: 15px;
    color: var(--text-3);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.football-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 8px;
}

.fb-card {
    background: var(--bg-card);
    border: 1px solid var(--border-c);
    border-radius: 12px;
    padding: 34px;
    transition: border-color 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}
.fb-card::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(0,255,136,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.fb-card:hover {
    border-color: rgba(0,255,136,0.2);
    transform: translateY(-3px);
}

.fb-icon { font-size: 34px; margin-bottom: 12px; }
.fb-period {
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.fb-title {
    font-family: var(--f-head);
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3px;
    line-height: 1.2;
}
.fb-loc {
    font-size: 12.5px;
    color: var(--text-3);
    font-style: italic;
    margin-bottom: 14px;
}
.fb-desc {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 18px;
}
.fb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.fb-tag {
    padding: 3px 11px;
    border-radius: 4px;
    background: rgba(0,255,136,0.07);
    border: 1px solid rgba(0,255,136,0.18);
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.4px;
}

/* ============================================
   CONTACT FOOTER
============================================ */
.contact-footer {
    background: var(--bg-alt);
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.footer-eyebrow {
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green);
}

.agent-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    background: var(--bg-card);
    border: 1px solid rgba(0,255,136,0.18);
    border-radius: 12px;
    padding: 32px 38px;
}

.agent-name {
    font-family: var(--f-head);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.agent-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 10px;
}
.agent-link {
    font-size: 13.5px;
    color: var(--text-2);
    transition: color 0.2s;
}
.agent-link:hover { color: var(--green); }
.agent-tagline {
    font-size: 12.5px;
    color: var(--green);
    font-style: italic;
}

.agent-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.btn-pdf {
    padding: 13px 28px;
    background: var(--green);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-pdf:hover {
    background: var(--teal);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,255,136,0.22);
}
.btn-contact {
    padding: 13px 28px;
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border-c);
    border-radius: 8px;
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    transition: border-color 0.2s, color 0.2s;
}
.btn-contact:hover {
    border-color: var(--green);
    color: var(--green);
}

/* ============================================
   SCROLL ANIMATION BASE STATE
============================================ */
.tl-item, .hl-card, .fb-card, .stat-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.tl-item.visible, .hl-card.visible, .fb-card.visible, .stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 260px 1fr; gap: 44px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .scouting-layout { grid-template-columns: 1fr; }
    .scouts-verdict { max-width: 480px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero { padding: 48px 0 40px; min-height: unset; }
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }
    .player-card { margin: 0 auto; }
    .eyebrow, .hero-contacts, .hero-tags { justify-content: center; }
    .transfer-target { max-width: 100%; align-items: center; }
    .attributes-layout { grid-template-columns: 1fr; }
    .timeline::before, .tl-item::before { display: none; }
    .tl-item { grid-template-columns: 1fr; gap: 6px; }
    .tl-period { text-align: left; padding-right: 0; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    .football-grid { grid-template-columns: 1fr; }
    .agent-card { flex-direction: column; align-items: flex-start; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .scouting-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
