/* ============================================
   HOLDEN JASTREMSKI · OFFICIAL SITE
   Pacers Gold + Indiana Navy
   ============================================ */

:root {
    --gold: #FDBB30;
    --gold-light: #FFD16E;
    --gold-dark: #E0A422;
    --navy: #002D62;
    --navy-deep: #001530;
    --navy-light: #003F8A;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-100: #F5F5F5;
    --gray-300: #C0C0C0;
    --gray-500: #777777;
    --gray-700: #333333;
    --gray-900: #1A1A1A;

    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'SFMono-Regular', monospace;

    --container: 1280px;
    --radius: 4px;

    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

@media (max-width: 968px) {
    body { cursor: auto; }
}

img { max-width: 100%; display: block; }

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

button { font-family: inherit; cursor: pointer; }

ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s var(--ease);
    mix-blend-mode: difference;
}

.cursor-follow {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-follow.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-light);
    background: rgba(253, 187, 48, 0.1);
}

@media (max-width: 968px) {
    .cursor, .cursor-follow { display: none; }
}

/* ============================================
   LOADER
   ============================================ */

.loader {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(253, 187, 48, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    animation: loadFill 1.4s var(--ease-out) forwards;
}

@keyframes loadFill {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease);
    background: rgba(0, 21, 48, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(253, 187, 48, 0.15);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(0, 21, 48, 0.96);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    display: flex;
    gap: 4px;
    align-items: center;
}

.logo-h {
    color: var(--gold);
    transition: transform 0.4s var(--ease);
}

.logo-j {
    color: var(--white);
    transition: transform 0.4s var(--ease);
}

.nav-logo:hover .logo-h { transform: translateX(-3px) rotate(-5deg); }
.nav-logo:hover .logo-j { transform: translateX(3px) rotate(5deg); }

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.75);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transition: right 0.4s var(--ease);
        border-left: 1px solid rgba(253, 187, 48, 0.2);
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1.5rem; }
    .nav-toggle { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 6rem;
    background: var(--navy-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(253, 187, 48, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 63, 138, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translateY(100vh) translateX(0); opacity: 0; }
    10%  { opacity: 0.4; }
    90%  { opacity: 0.4; }
    to   { transform: translateY(-10vh) translateX(50px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(253, 187, 48, 0.3);
    border-radius: 100px;
    margin-bottom: 2rem;
    background: rgba(253, 187, 48, 0.05);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s backwards;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(253, 187, 48, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 11vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
}

.title-line span,
.title-line::before {
    display: inline-block;
    animation: titleSlide 1s var(--ease-out) backwards;
}

.title-line {
    animation: titleSlide 1s var(--ease-out) 0.4s backwards;
}

.title-line.accent {
    color: var(--gold);
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
    animation: titleSlide 1s var(--ease-out) 0.6s backwards;
    position: relative;
}

.title-line.accent::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--gold);
    -webkit-text-stroke: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    animation: textReveal 2s var(--ease-out) 0.8s backwards;
}

@keyframes titleSlide {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes textReveal {
    from { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s var(--ease-out) 0.9s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 1.1s backwards;
}

.hero-quickstats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s var(--ease-out) 1.3s backwards;
}

.qstat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.qstat span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 600px) {
    .hero-quickstats { gap: 1.5rem; }
    .qstat strong { font-size: 1.25rem; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
    z-index: 0;
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(253, 187, 48, 0.4);
}

.btn-primary:hover::before { transform: translateX(0); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Visual / Photo */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInScale 1.2s var(--ease-out) 0.8s backwards;
}

@keyframes fadeInScale {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.photo-frame {
    position: relative;
    width: min(440px, 90%);
    aspect-ratio: 3/4;
}

.photo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(253, 187, 48, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    animation: glow 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes glow {
    from { opacity: 0.5; transform: scale(0.95); }
    to { opacity: 0.9; transform: scale(1.05); }
}

.photo-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 60%, var(--navy-deep) 100%);
    border-radius: var(--radius);
    overflow: hidden;
}

.photo-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(253, 187, 48, 0.03) 30px,
            rgba(253, 187, 48, 0.03) 31px
        );
}

.photo-shape {
    position: absolute;
    inset: 12px;
    background:
        linear-gradient(180deg, transparent 30%, var(--navy-deep) 100%),
        radial-gradient(ellipse at 50% 35%, var(--gold) 0%, transparent 35%),
        linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius);
    overflow: hidden;
}

.photo-shape::before {
    content: 'HJ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 16rem;
    font-weight: 900;
    color: rgba(253, 187, 48, 0.15);
    letter-spacing: -0.05em;
    line-height: 1;
}

/* Hero photo image - layers on top of the placeholder */
.photo-img {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.photo-shape::after {
    content: 'DATA · ENG';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(253, 187, 48, 0.5);
    white-space: nowrap;
}

.photo-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.85rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    border: 1px solid rgba(253, 187, 48, 0.4);
}

.badge-circle {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(253, 187, 48, 0.3);
    animation: pulse 1.5s ease-in-out infinite;
}

.photo-stats {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.stat-pill {
    background: var(--navy-deep);
    border: 1px solid rgba(253, 187, 48, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s var(--ease);
}

.stat-pill:hover { transform: translateY(-4px); }

.stat-pill strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.stat-pill span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 6rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollDown {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 968px) {
    .hero-scroll { display: none; }
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    padding: 1rem 0;
    overflow: hidden;
    z-index: 2;
    transform: rotate(-2deg) translateY(20px);
    box-shadow: 0 -10px 40px rgba(253, 187, 48, 0.3);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--navy-deep);
    padding-left: 3rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */

section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.8s var(--ease-out);
}

.section-header.visible .section-line {
    transform: scaleX(1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about-lead {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.75rem;
    line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.about-traits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 600px) {
    .about-traits { grid-template-columns: 1fr; }
}

.trait {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.15);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s var(--ease);
}

.trait:hover {
    background: rgba(253, 187, 48, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.trait-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trait h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.trait p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* About Card */
.about-card {
    position: relative;
    background: linear-gradient(135deg, rgba(253, 187, 48, 0.08) 0%, rgba(0, 21, 48, 0.6) 100%);
    border: 1px solid rgba(253, 187, 48, 0.3);
    padding: 2.5rem;
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform 0.5s var(--ease);
}

.about-card:hover { transform: translateY(-8px); }

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 187, 48, 0.15) 0%, transparent 50%);
    pointer-events: none;
    transition: transform 0.6s var(--ease);
}

.about-card:hover .card-glow {
    transform: translate(20%, 20%);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(253, 187, 48, 0.2);
    position: relative;
    z-index: 1;
}

.card-name {
    font-family: var(--font-display);
    font-size: 2.75rem;
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.card-info {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.card-info li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.card-info li span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-info li strong {
    color: var(--white);
    font-weight: 600;
}

.status-live {
    color: var(--gold) !important;
    animation: pulse 2s ease-in-out infinite;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: rgba(253, 187, 48, 0.6);
    position: relative;
    z-index: 1;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    background: var(--navy-deep);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(253, 187, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 63, 138, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

@media (max-width: 968px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.15);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(253, 187, 48, 0.05);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-card.featured {
    background: linear-gradient(135deg, rgba(253, 187, 48, 0.1) 0%, transparent 100%);
    border-color: rgba(253, 187, 48, 0.4);
}

.stat-card.featured::before { transform: scaleX(1); }

.stat-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: inline-block;
    line-height: 1;
}

.stat-card-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 0.85rem;
    line-height: 1.1;
}

.stat-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.skill-tags li {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    padding: 0.35rem 0.75rem;
    background: rgba(253, 187, 48, 0.08);
    border: 1px solid rgba(253, 187, 48, 0.25);
    border-radius: 4px;
    letter-spacing: 0.03em;
    transition: all 0.3s var(--ease);
}

.skill-tags li:hover {
    background: rgba(253, 187, 48, 0.18);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   JOURNEY / TIMELINE
   ============================================ */

.journey {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-line { left: 20px; }
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    width: 50%;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    padding-right: 4rem;
    text-align: right;
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    padding-left: 4rem;
    margin-left: 50%;
}

@media (max-width: 768px) {
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 4rem;
        padding-right: 1rem;
        text-align: left;
    }
}

.timeline-dot {
    position: absolute;
    top: 2.5rem;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--navy-deep);
    box-shadow: 0 0 0 3px var(--gold), 0 0 20px rgba(253, 187, 48, 0.6);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}

@media (max-width: 768px) {
    .timeline-item .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(253, 187, 48, 0.15);
    transition: all 0.4s var(--ease);
}

.timeline-content:hover {
    border-color: var(--gold);
    background: rgba(253, 187, 48, 0.05);
    transform: scale(1.02);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.timeline-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold-light);
    background: rgba(253, 187, 48, 0.08);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.85rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(253, 187, 48, 0.2);
}

.timeline-bullets {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.timeline-bullets li {
    position: relative;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.timeline-bullets li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.85rem;
}

.timeline-item:nth-child(odd) .timeline-bullets {
    text-align: left;
    direction: rtl;
}
.timeline-item:nth-child(odd) .timeline-bullets li {
    direction: ltr;
    padding-left: 0;
    padding-right: 1.25rem;
}
.timeline-item:nth-child(odd) .timeline-bullets li::before {
    left: auto;
    right: 0;
    content: '◂';
}

@media (max-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-bullets,
    .timeline-item:nth-child(odd) .timeline-bullets li {
        text-align: left;
        direction: ltr;
        padding-left: 1.25rem;
        padding-right: 0;
    }
    .timeline-item:nth-child(odd) .timeline-bullets li::before {
        left: 0;
        right: auto;
        content: '▸';
    }
}

/* ============================================
   ATHLETIC ROOTS
   ============================================ */

.roots {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
}

.roots-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .roots-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.roots-lead {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.75rem;
    line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}

.roots-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.roots-text strong { color: var(--gold); font-weight: 600; }

.roots-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.roots-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vitals-card {
    background: linear-gradient(135deg, rgba(253, 187, 48, 0.08) 0%, rgba(0, 21, 48, 0.6) 100%);
    border: 1px solid rgba(253, 187, 48, 0.3);
    padding: 1.75rem;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.vitals-eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(253, 187, 48, 0.2);
}

.vitals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vitals-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.vitals-list li:last-child { border-bottom: none; }

.vitals-list li span {
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.vitals-list li strong {
    color: var(--white);
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.sport-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.25);
    padding: 1.75rem;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease);
}

.sport-card:hover {
    border-color: var(--gold);
    background: rgba(253, 187, 48, 0.05);
    transform: translateX(4px);
}

.sport-card:hover::before { transform: scaleY(1); }

.sport-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.sport-eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.sport-card h4 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.sport-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    margin: 0;
}

/* Career 4-Year Stats */
.career-stats {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(253, 187, 48, 0.15);
    position: relative;
}

.career-stats::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.career-stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.career-stats-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 968px) {
    .career-stats-wrap { grid-template-columns: 1fr; }
}

.career-block {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(253, 187, 48, 0.2);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.3s var(--ease);
}

.career-block:hover { border-color: rgba(253, 187, 48, 0.4); }

.career-block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.career-side {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
}

.career-side.defense {
    color: var(--navy-deep);
    background: var(--gold);
}

.career-side.offense {
    color: var(--gold);
    background: rgba(253, 187, 48, 0.1);
    border: 1px solid var(--gold);
}

.career-pos {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

@media (max-width: 600px) {
    .career-grid { grid-template-columns: repeat(2, 1fr); }
}

.career-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.1rem 0.85rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.career-stat:hover {
    border-color: rgba(253, 187, 48, 0.4);
    background: rgba(253, 187, 48, 0.05);
}

.career-stat.featured {
    background: linear-gradient(180deg, rgba(253, 187, 48, 0.12) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-color: rgba(253, 187, 48, 0.35);
}

.career-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.career-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

/* Hoops grid - single-row of 6 like the combine */
.hoops-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.85rem;
}

@media (max-width: 968px) {
    .hoops-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .hoops-grid { grid-template-columns: repeat(2, 1fr); }
}

.career-stats.hoops {
    margin-top: 4rem;
}

/* Season-by-Season Table */
.seasons-table {
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(253, 187, 48, 0.18);
    border-radius: var(--radius);
    padding: 1.75rem;
    overflow-x: auto;
}

.seasons-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(253, 187, 48, 0.18);
}

.seasons-grid {
    display: grid;
    gap: 0;
    min-width: 540px;
}

.season-row {
    display: grid;
    grid-template-columns: 1.7fr repeat(7, 1fr);
    gap: 0.5rem;
    padding: 0.85rem 0.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    transition: background 0.3s var(--ease);
}

.seasons-grid.hoops-seasons .season-row {
    grid-template-columns: 1.7fr repeat(6, 1fr);
}

.season-row:not(.season-head):not(.season-total):hover {
    background: rgba(253, 187, 48, 0.04);
}

.season-row.season-head {
    border-bottom: 2px solid rgba(253, 187, 48, 0.4);
    padding-bottom: 0.85rem;
    margin-bottom: 0.25rem;
}

.season-row.season-head .s-year,
.season-row.season-head .s-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.season-row.season-total {
    background: linear-gradient(90deg, rgba(253, 187, 48, 0.12), rgba(253, 187, 48, 0.04) 50%, transparent);
    border-top: 2px solid rgba(253, 187, 48, 0.4);
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.season-row.season-total .s-year strong,
.season-row.season-total .s-num {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

.s-year {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

.s-year strong {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    margin-right: 0.4rem;
    letter-spacing: 0.02em;
}

.s-num {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .seasons-table { padding: 1.25rem 1rem; }
    .seasons-title { font-size: 1.1rem; }
    .season-row { font-size: 0.8rem; gap: 0.35rem; }
    .s-num { font-size: 0.9rem; }
}

.root-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.2);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.root-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(253, 187, 48, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.root-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.root-card:hover::before { opacity: 1; }

.root-card.highlight {
    background: linear-gradient(135deg, rgba(253, 187, 48, 0.12) 0%, transparent 100%);
    border-color: rgba(253, 187, 48, 0.5);
}

.root-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.25rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.root-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.root-sub {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.4rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* ============================================
   COMBINE / MEASURABLES
   ============================================ */

.combine {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(253, 187, 48, 0.15);
    position: relative;
}

.combine::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.combine-header {
    text-align: center;
    margin-bottom: 3rem;
}

.combine-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.35em;
    margin-bottom: 0.85rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(253, 187, 48, 0.3);
    border-radius: 100px;
    background: rgba(253, 187, 48, 0.05);
}

.combine-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.combine-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.combine-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

@media (max-width: 968px) {
    .combine-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .combine-grid { grid-template-columns: repeat(2, 1fr); }
}

.combine-stat {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(253, 187, 48, 0.2);
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.combine-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gold);
    transition: transform 0.4s var(--ease);
}

.combine-stat:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: rgba(253, 187, 48, 0.06);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.combine-stat:hover::before { transform: translateX(-50%) scaleX(1); }

.combine-stat.featured {
    background: linear-gradient(180deg, rgba(253, 187, 48, 0.1) 0%, rgba(0, 0, 0, 0.25) 100%);
    border-color: rgba(253, 187, 48, 0.4);
}

.combine-stat.featured::before { transform: translateX(-50%) scaleX(1); }

.combine-cat {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    opacity: 0.85;
}

.combine-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.combine-unit {
    font-size: 0.55em;
    color: var(--gold);
    margin-left: 0.1em;
    font-weight: 400;
}

.combine-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.3;
}

/* ============================================
   HONORS & ACCOLADES
   ============================================ */

.honors {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.honors::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(253, 187, 48, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 187, 48, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

@media (max-width: 968px) {
    .honors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .honors-grid { grid-template-columns: 1fr; }
}

.honor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.2);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    color: var(--gold);
}

.honor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.honor-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(253, 187, 48, 0.06);
}

.honor-card:hover::before { transform: scaleX(1); }

.honor-card.headline-honor {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(253, 187, 48, 0.18) 0%, rgba(0, 21, 48, 0.4) 100%);
    border-color: rgba(253, 187, 48, 0.5);
    padding: 3rem;
    text-align: center;
}

.honor-card.headline-honor::before { transform: scaleX(1); }

.honor-card.headline-honor::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(253, 187, 48, 0.18), transparent 70%);
    pointer-events: none;
}

@media (max-width: 968px) {
    .honor-card.headline-honor { grid-column: span 2; }
}

@media (max-width: 600px) {
    .honor-card.headline-honor { grid-column: span 1; padding: 2.25rem 1.75rem; }
}

.honor-ribbon {
    position: absolute;
    top: 1.25rem;
    right: -2.5rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    padding: 0.4rem 3rem;
    transform: rotate(35deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.honor-times {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(253, 187, 48, 0.35);
    z-index: 2;
    transition: transform 0.4s var(--ease);
}

.honor-card:hover .honor-times {
    transform: rotate(-12deg) scale(1.1);
}

.honor-medal {
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(253, 187, 48, 0.08);
    border: 1.5px solid rgba(253, 187, 48, 0.25);
    border-radius: 50%;
    transition: all 0.4s var(--ease);
}

.honor-card:hover .honor-medal {
    background: rgba(253, 187, 48, 0.15);
    transform: rotate(-6deg) scale(1.05);
    border-color: var(--gold);
}

.honor-card.headline-honor .honor-medal {
    width: 96px;
    height: 96px;
    margin-bottom: 1.5rem;
}

.honor-cat {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.honor-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 0.85rem;
}

.honor-card.headline-honor .honor-name {
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.honor-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.honor-card.headline-honor .honor-desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.honor-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(253, 187, 48, 0.15);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

.honor-card.headline-honor .honor-meta {
    justify-content: center;
}

.honor-meta a {
    color: var(--gold);
    transition: color 0.3s var(--ease);
}

.honor-meta a:hover { color: var(--gold-light); }

.honors-footnote {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(253, 187, 48, 0.25);
    border-radius: var(--radius);
}

.honors-footnote p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.honors-fn-label {
    color: var(--gold);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

.honors-footnote a {
    color: var(--gold);
    border-bottom: 1px solid currentColor;
    transition: color 0.3s var(--ease);
}

.honors-footnote a:hover { color: var(--gold-light); }

/* ============================================
   HIGHLIGHTS / GAME FILM
   ============================================ */

.highlights {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 187, 48, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-deck {
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

@media (max-width: 968px) {
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    .reel-card.senior { grid-column: span 2; }
}

@media (max-width: 600px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .reel-card.senior { grid-column: span 1; }
}

.reel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease);
    color: inherit;
    text-decoration: none;
    position: relative;
}

.reel-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Reel thumbnail image - sits behind overlay/play button */
.reel-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 0;
    transition: transform 0.6s var(--ease);
}

/* Per-reel crop biasing - keeps the action in frame for portrait-oriented photos */
.reel-card.senior .reel-thumb-img { object-position: center 20%; }
.reel-card.junior .reel-thumb-img { object-position: center 15%; }
.reel-card.sophomore .reel-thumb-img { object-position: center 30%; }

.reel-card:hover .reel-thumb-img {
    transform: scale(1.06);
}

.reel-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(253, 187, 48, 0.04),
            rgba(253, 187, 48, 0.04) 14px,
            transparent 14px,
            transparent 28px
        ),
        linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 60%, #000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-card.senior .reel-thumb {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(253, 187, 48, 0.06),
            rgba(253, 187, 48, 0.06) 14px,
            transparent 14px,
            transparent 28px
        ),
        radial-gradient(ellipse at 50% 40%, rgba(253, 187, 48, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 80%);
    aspect-ratio: 16/10;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    transition: background 0.4s var(--ease);
}

.reel-card:hover .reel-overlay {
    background:
        radial-gradient(ellipse at center, rgba(253, 187, 48, 0.15) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.reel-play {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--navy-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(253, 187, 48, 0.4), 0 0 0 0 rgba(253, 187, 48, 0.5);
    transition: all 0.4s var(--ease);
    animation: pulseRing 2.5s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { box-shadow: 0 8px 24px rgba(253, 187, 48, 0.4), 0 0 0 0 rgba(253, 187, 48, 0.5); }
    50% { box-shadow: 0 8px 24px rgba(253, 187, 48, 0.4), 0 0 0 16px rgba(253, 187, 48, 0); }
}

.reel-card.senior .reel-play {
    width: 90px;
    height: 90px;
}

.reel-card:hover .reel-play {
    transform: scale(1.1);
    background: var(--gold-light);
}

.reel-corner-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.reel-meta {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reel-year {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.25em;
    margin-bottom: 0.5rem;
}

.reel-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.reel-card.senior .reel-title {
    font-size: 1.85rem;
}

.reel-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
}

.reel-cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reel-cta .arrow {
    transition: transform 0.3s var(--ease);
}

.reel-card:hover .reel-cta .arrow {
    transform: translateX(6px);
}

.highlights-footer {
    margin-top: 3rem;
    text-align: center;
}

.highlights-footer .btn {
    align-items: center;
}

.highlights-footer .btn svg {
    margin-right: 0.25rem;
}

/* ============================================
   EDUCATION
   ============================================ */

.education {
    background: var(--navy);
}

.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .edu-grid { grid-template-columns: 1fr; }
}

.edu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.2);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.edu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.edu-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.edu-card:hover::before { transform: scaleX(1); }

.edu-emblem {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(253, 187, 48, 0.3);
}

.edu-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.edu-card h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.edu-card > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.edu-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 1rem !important;
    line-height: 1.65;
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    background: var(--gold);
    color: var(--navy-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before,
.quote-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 21, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-section::before { top: -100px; left: -100px; }
.quote-section::after { bottom: -100px; right: -100px; }

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.5;
    color: var(--navy-deep);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.quote {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote em {
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
    text-decoration-color: var(--white);
}

.quote-author {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.text-accent {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(253, 187, 48, 0.25);
    z-index: -1;
}

.contact-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.15);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.contact-method:hover {
    border-color: var(--gold);
    background: rgba(253, 187, 48, 0.05);
    transform: translateX(8px);
}

.method-icon {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    width: 48px;
    height: 48px;
    background: rgba(253, 187, 48, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.method-value {
    display: block;
    font-weight: 600;
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(253, 187, 48, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s var(--ease);
    resize: vertical;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FDBB30' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--navy-deep);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(253, 187, 48, 0.05);
    box-shadow: 0 0 0 3px rgba(253, 187, 48, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(253, 187, 48, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .footer-links { justify-content: center; }
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .footer-social { justify-content: center; }
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(253, 187, 48, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-tag {
    font-family: var(--font-heading);
    letter-spacing: 0.3em;
    color: var(--gold) !important;
    font-size: 0.75rem;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection */
::selection {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ============================================
   WORKOUTS PAGE
   ============================================ */

/* Hero variant */
.hero-workouts {
    padding-bottom: 5rem;
}

.hero-workouts .hero-marquee { display: none; }

.workouts-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
}

.workouts-title {
    font-size: clamp(3rem, 9vw, 7.5rem);
    margin-bottom: 2rem;
}

.workouts-title .title-line {
    display: block;
    line-height: 0.95;
}

.workouts-subtitle {
    max-width: 720px;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    margin-bottom: 2.5rem;
}

.workouts-quickstats {
    flex-wrap: wrap;
}

.workouts-jumpbar {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(253, 187, 48, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.jump-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.5rem;
}

.workouts-jumpbar a {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(253, 187, 48, 0.3);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}

.workouts-jumpbar a:hover {
    background: rgba(253, 187, 48, 0.15);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Block sections */
.block-section {
    padding: 6rem 0;
    position: relative;
}

.block-section:nth-of-type(even) {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.block-section:nth-of-type(odd) {
    background: var(--navy-deep);
}

.block-section .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.block-section .section-header .section-line {
    margin: 0;
    transform: scaleX(1);
}

.block-section .section-deck {
    margin-top: 1.25rem;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
}

.block-subhead {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--white);
    margin: 3rem 0 1.5rem;
}

/* TL;DR card */
.tldr-card {
    position: relative;
    background: linear-gradient(135deg, rgba(253, 187, 48, 0.08) 0%, rgba(0, 21, 48, 0.4) 100%);
    border: 1px solid rgba(253, 187, 48, 0.3);
    padding: 2.5rem 2.75rem;
    border-radius: var(--radius);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.tldr-label {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: var(--navy-deep);
    padding: 0 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
}

.tldr-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: none;
}

.tldr-card p:last-child { margin-bottom: 0; }
.tldr-card p strong { color: var(--white); }

/* Principles grid (12 cards) */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 968px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .principles-grid { grid-template-columns: 1fr; } }

.principle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.15);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}

.principle-card:hover {
    background: rgba(253, 187, 48, 0.05);
    border-color: rgba(253, 187, 48, 0.4);
    transform: translateY(-4px);
}

.principle-card:hover::before { transform: scaleY(1); }

.principle-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.principle-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.principle-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.principle-card p em {
    color: var(--gold-light);
    font-style: italic;
}

/* Daily template steps */
.template-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.template-steps li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: baseline;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(253, 187, 48, 0.1);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: all 0.3s var(--ease);
}

.template-steps li:hover {
    border-color: rgba(253, 187, 48, 0.35);
    background: rgba(253, 187, 48, 0.04);
    transform: translateX(4px);
}

.step-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.step-body {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.55;
}

.step-body strong {
    color: var(--white);
    font-weight: 600;
    margin-right: 0.4rem;
}

/* Day section */
.day-section {
    padding-top: 7rem;
}

.day-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    flex-wrap: wrap;
}

.day-num {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 6.5rem);
    color: var(--gold);
    line-height: 0.8;
    letter-spacing: 0.02em;
}

.day-title-wrap { flex: 1; }

.day-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0 0 0.4rem;
}

.day-focus {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold-light);
}

/* Workout blocks (per-day exercise cards) */
.workout-blocks {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.wblock {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(253, 187, 48, 0.15);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s var(--ease);
}

.wblock:hover { border-color: rgba(253, 187, 48, 0.3); }

.wblock-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: 0.65rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wblock-head h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0;
}

.wblock-dur {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.wblock-intro {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin: 0 0 0.65rem;
}

.wblock-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.55;
}

.wblock-note strong { color: var(--gold-light); }
.wblock-note em { color: var(--gold); font-style: italic; }

/* Exercise tables - per-workout-block tabular layout */
.exercise-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.875rem;
}

.exercise-table thead th {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
    padding: 0 0 0.4rem;
    border-bottom: 1px solid rgba(253, 187, 48, 0.4);
    opacity: 0.9;
}

.exercise-table thead th.rx-col {
    text-align: right;
    width: 1%;
    white-space: nowrap;
}

.exercise-table tbody td {
    padding: 0.55rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
    vertical-align: top;
}

.exercise-table tbody tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
}

.exercise-table tbody tr:first-child td {
    padding-top: 0.65rem;
}

.exercise-table td.ex-cell {
    padding-right: 1rem;
}

.exercise-table td.rx-cell {
    text-align: right;
    white-space: nowrap;
    width: 1%;
}

.exercise-table tbody tr {
    transition: background 0.2s var(--ease);
}

.exercise-table tbody tr:hover {
    background: rgba(253, 187, 48, 0.03);
}

@media (max-width: 600px) {
    .exercise-table thead { display: none; }
    .exercise-table tbody td {
        display: block;
        padding: 0.4rem 0;
        border-bottom: none;
    }
    .exercise-table tbody tr {
        display: block;
        padding: 0.9rem 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    }
    .exercise-table tbody tr:last-child { border-bottom: none; }
    .exercise-table td.rx-cell { text-align: left; padding-top: 0.5rem; }
}

.ex {
    color: var(--white);
    font-weight: 500;
    line-height: 1.35;
    font-size: 0.9rem;
}

.ex em { color: var(--gold-light); font-style: italic; }

.ex-sub {
    display: block;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    line-height: 1.4;
    margin-top: 0.2rem;
}

.ex-cue {
    display: block;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    line-height: 1.4;
    margin-top: 0.15rem;
}

.ex-cue::before { content: '\201C'; color: var(--gold); margin-right: 2px; }
.ex-cue::after { content: '\201D'; color: var(--gold); margin-left: 2px; }

.rx {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-align: right;
}

@media (max-width: 600px) {
    .exercise-list li { grid-template-columns: 1fr; }
    .rx { text-align: left; }
}

/* Rationale aside */
.rationale {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: rgba(0, 0, 0, 0.25);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.65;
}

.rationale-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

/* Plain lists */
.plain-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    max-width: 760px;
}

.plain-list li {
    padding: 0.55rem 0 0.55rem 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.plain-list li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: var(--gold);
    font-size: 0.85rem;
}

ol.plain-list { counter-reset: ol-counter; }
ol.plain-list li { counter-increment: ol-counter; }
ol.plain-list li::before {
    content: counter(ol-counter, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.plain-list li strong { color: var(--white); }
.plain-list li em { color: var(--gold-light); font-style: italic; }

/* Recovery grid */
.recovery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 760px) { .recovery-grid { grid-template-columns: 1fr; } }

.recovery-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.4s var(--ease);
}

.recovery-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.recovery-tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.recovery-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.recovery-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recovery-card ul li {
    padding: 0.5rem 0 0.5rem 1.25rem;
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.55;
}

.recovery-card ul li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.recovery-card ul li strong { color: var(--white); }

/* Progression blocks (3 wave cards) */
.progression-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

@media (max-width: 968px) { .progression-blocks { grid-template-columns: 1fr; } }

.prog-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.2);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    position: relative;
    transition: all 0.4s var(--ease);
}

.prog-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.prog-block:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.prog-block:hover::before { transform: scaleX(1); }

.prog-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.prog-block h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.prog-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.prog-block ul li {
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.prog-block ul li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    top: 0.4rem;
    color: var(--gold);
    font-size: 0.75rem;
}

.prog-goal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.55;
}

.prog-goal-label {
    display: block;
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

/* Retest checklist */
.retest-grid {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

@media (max-width: 700px) { .retest-grid { grid-template-columns: 1fr; } }

.retest-grid li {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(253, 187, 48, 0.15);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
}

.retest-grid li:hover {
    border-color: rgba(253, 187, 48, 0.4);
    background: rgba(253, 187, 48, 0.04);
}

.retest-box {
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--gold);
    flex-shrink: 0;
    border-radius: 2px;
}

.retest-item b {
    color: var(--white);
    font-weight: 600;
}

/* Form cues table */
.cues-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.cues-table th,
.cues-table td {
    text-align: left;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.cues-table th {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    border-bottom: 2px solid var(--gold);
}

.cues-table td:first-child {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--white);
    width: 30%;
    white-space: nowrap;
}

.cues-table td:last-child {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.cues-table tr:hover td { background: rgba(253, 187, 48, 0.03); }

@media (max-width: 700px) {
    .cues-table td:first-child { white-space: normal; width: auto; }
    .cues-table { font-size: 0.9rem; }
    .cues-table th, .cues-table td { padding: 0.75rem 0.85rem; }
}

/* Axioms / pull quotes */
.axioms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-top: 1rem;
}

@media (max-width: 760px) { .axioms-grid { grid-template-columns: 1fr; } }

.axiom {
    margin: 0;
    padding: 0 0 0 1.25rem;
    border-left: 2px solid var(--gold);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--white);
    transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}

.axiom:hover {
    border-left-color: var(--gold-light);
    padding-left: 1.5rem;
}


/* Collapsible day sections */
.day-details {
    /* wrapper - no specific layout */
}

summary.day-header {
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: opacity 0.25s var(--ease);
}

summary.day-header::-webkit-details-marker { display: none; }
summary.day-header::marker { display: none; }

summary.day-header:hover .day-title { color: var(--gold); }

summary.day-header:hover .day-chevron {
    background: rgba(253, 187, 48, 0.12);
    border-color: var(--gold);
}

.day-chevron {
    margin-left: auto;
    color: var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(253, 187, 48, 0.35);
    background: rgba(253, 187, 48, 0.05);
    transition: transform 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
    align-self: center;
}

.day-details[open] .day-chevron {
    transform: rotate(180deg);
    background: rgba(253, 187, 48, 0.15);
    border-color: var(--gold);
}

.day-body {
    animation: dayExpand 0.5s var(--ease-out);
}

@keyframes dayExpand {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Days control bar - sticky between template and day sections */
.days-control-bar {
    background: var(--navy-deep);
    border-top: 1px solid rgba(253, 187, 48, 0.15);
    border-bottom: 1px solid rgba(253, 187, 48, 0.15);
    padding: 1.25rem 0;
    position: sticky;
    top: 60px;
    z-index: 40;
    backdrop-filter: blur(10px);
    background: rgba(0, 21, 48, 0.92);
}

.days-control-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.days-control-label .combine-eyebrow {
    display: block;
    margin-bottom: 0.25rem;
}

.days-control-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.days-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(253, 187, 48, 0.08);
    border: 1px solid rgba(253, 187, 48, 0.35);
    color: var(--gold);
    padding: 0.6rem 1.1rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.days-toggle-btn:hover {
    background: rgba(253, 187, 48, 0.18);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-1px);
}

.days-toggle-btn svg {
    transition: transform 0.3s var(--ease);
}

.days-toggle-btn[data-expanded="true"] svg {
    transform: rotate(180deg);
}

@media (max-width: 600px) {
    .days-control-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .days-toggle-btn { width: 100%; justify-content: center; }
}

/* Downloadable diagram card - sits under Daily Architecture */
.diagram-download {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, rgba(253, 187, 48, 0.06) 0%, rgba(0, 21, 48, 0.4) 100%);
    border: 1px solid rgba(253, 187, 48, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    transition: all 0.4s var(--ease);
}

.diagram-download:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 760px) {
    .diagram-download { grid-template-columns: 1fr; }
}

.diagram-preview {
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: zoom-in;
    transition: background 0.3s var(--ease);
}

.diagram-preview:hover { background: rgba(0, 0, 0, 0.45); }
.diagram-preview:hover .diagram-zoom {
    opacity: 1;
    transform: translate(0, 0);
}

.diagram-preview img { transition: transform 0.4s var(--ease); }
.diagram-preview:hover img { transform: scale(1.02); }

.diagram-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.45rem 0.8rem;
    border-radius: 100px;
    opacity: 0;
    transform: translate(8px, -4px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.diagram-preview.no-image { cursor: default; }
.diagram-preview.no-image .diagram-zoom { display: none; }

.diagram-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.diagram-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(253, 187, 48, 0.03) 30px,
            rgba(253, 187, 48, 0.03) 31px
        );
    pointer-events: none;
}

.diagram-preview img {
    max-width: 100%;
    max-height: 460px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Fallback when image hasn't been added yet */
.diagram-preview.no-image::after {
    content: 'DROP daily_arch_image.png INTO /images/';
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: rgba(253, 187, 48, 0.55);
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.diagram-preview.no-image {
    flex-direction: column;
    gap: 1rem;
}

.diagram-preview.no-image::before {
    content: '↓';
    font-size: 4.5rem;
    font-weight: 100;
    color: rgba(253, 187, 48, 0.4);
    background: none;
    position: relative;
    inset: auto;
    line-height: 1;
}

.diagram-meta {
    padding: 2.5rem 2.5rem 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diagram-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(253, 187, 48, 0.3);
    border-radius: 100px;
    align-self: flex-start;
    background: rgba(253, 187, 48, 0.05);
}

.diagram-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 0.85rem;
}

.diagram-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.diagram-btn {
    align-self: flex-start;
}
