Gear List
Gear β€” The ARQIV Podcast *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-primary: #0A0A0A; --bg-secondary: #111111; --bg-card: #161616; --text-primary: #FFFFFF; --text-secondary: #999999; --text-dim: #555555; --border: #222222; --border-hover: #333333; --font-display: 'Space Grotesk', sans-serif; --font-body: 'Outfit', sans-serif; } html { scroll-behavior: smooth; } body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; } a { color: var(--text-primary); text-decoration: none; transition: color 0.3s; } a:hover { color: var(--text-secondary); } /* NAV */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 48px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(10,10,10,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); } .nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; } .nav-links { display: flex; gap: 32px; list-style: none; } .nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-secondary); } .nav-links a:hover { color: var(--text-primary); } .nav-mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 24px; cursor: pointer; } /* HERO */ .gear-hero { padding: 140px 48px 60px; text-align: center; border-bottom: 1px solid var(--border); } .section-label { font-size: 12px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; } .gear-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 700; margin-bottom: 20px; } .gear-hero p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; } .affiliate-notice { display: inline-block; margin-top: 32px; padding: 12px 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px; font-size: 13px; color: var(--text-dim); letter-spacing: 0.5px; } /* CATEGORY NAV */ .category-nav { padding: 20px 48px; border-bottom: 1px solid var(--border); background: var(--bg-secondary); position: sticky; top: 72px; z-index: 999; overflow-x: auto; -webkit-overflow-scrolling: touch; } .category-nav::-webkit-scrollbar { height: 0; } .category-nav-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; } .category-link { padding: 7px 16px; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); transition: all 0.3s; white-space: nowrap; } .category-link:hover { border-color: var(--text-primary); color: var(--text-primary); } /* GEAR SECTIONS */ .gear-section { padding: 80px 48px; } .gear-section:nth-child(even) { background: var(--bg-secondary); } .gear-section-inner { max-width: 1100px; margin: 0 auto; } .gear-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; } .gear-section-icon { font-size: 28px; } .gear-section-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: 1px; } /* GEAR GRID */ .gear-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; } .gear-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: all 0.3s; } .gear-card:hover { border-color: var(--border-hover); transform: translateY(-2px); background: #1a1a1a; } .gear-card-info { flex: 1; min-width: 0; } .gear-card-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; line-height: 1.3; } .gear-card-desc { font-size: 13px; color: var(--text-dim); line-height: 1.4; margin-top: 2px; } .gear-card-cta { flex-shrink: 0; padding: 8px 16px; border: 1px solid var(--border); border-radius: 6px; font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-secondary); transition: all 0.3s; white-space: nowrap; } .gear-card:hover .gear-card-cta { border-color: var(--text-primary); color: var(--text-primary); } /* FOOTER */ .footer { padding: 40px 48px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; } .footer-copy { font-size: 13px; color: var(--text-dim); } .footer-links { display: flex; gap: 24px; } .footer-links a { font-size: 13px; color: var(--text-dim); } .footer-links a:hover { color: var(--text-primary); } .footer-affiliate { text-align: center; padding: 24px 48px 0; font-size: 13px; color: var(--text-dim); } /* RESPONSIVE */ @media (max-width: 900px) { .nav { padding: 0 24px; } .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.95); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); } .nav-links.active { display: flex; } .nav-mobile-toggle { display: block; } .gear-hero { padding: 120px 24px 40px; } .category-nav { padding: 16px 24px; } .category-nav-inner { flex-wrap: nowrap; justify-content: flex-start; } .gear-section { padding: 60px 24px; } .gear-grid { grid-template-columns: 1fr; } .footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; } .footer-affiliate { padding: 24px 24px 0; } }

Gear I Use

Every camera, microphone, light, and piece of production gear behind The ARQIV Podcast β€” from studio to field.

As an Amazon Associate I earn from qualifying purchases β€” at no extra cost to you.
πŸ”Œ

Cables, Adapters & Power

Amazon Basics HDMI 8K 10ft
48Gbps cable
View β†’
UGREEN 8K HDMI 2.1 10ft
Certified cable
View β†’
Capshi 8K HDMI 2.1 6.6ft
Ultra HD cable
View β†’
Micro HDMI to HDMI 15ft
4K β€” oldboytech
View β†’
Mini HDMI to HDMI 8K 10ft
RUIZHI β€” 2-pack
View β†’
Angled Micro HDMI Adapter
90Β° β€” Seadream
View β†’
Amazon Basics Mini HDMI
Mini HDMI to HDMI cable
View β†’
BENFEI DP to HDMI
4K adapter β€” 2-pack
View β†’
UGREEN USB-C to DP 2.1
DisplayPort cable
View β†’
acer USB-C to DP 6.6ft
4K@60Hz
View β†’
Silkland Thunderbolt 5
80Gbps cable
View β†’
Silkland Thunderbolt 4 10ft
40Gbps cable
View β†’
Silkland USB-C Monitor Cable
4K@144Hz
View β†’
USB-C 100W Cable 6.6ft
2-pack
View β†’
NIMASO USB-C 3.1 Gen 2
10Gbps data cable
View β†’
USB-C 10ft 10Gbps
Gen 2 data cable β€” red
View β†’
USB-C 60W Cable 10ft
2-pack
View β†’
Temdan USB to USB-C Adapter
4-pack
View β†’
Basesailor USB to USB-C
Adapter β€” 2-pack
View β†’
USB-C to USB Adapter
3-pack
View β†’
USB-C Hub 9-in-1
Multiport adapter w/ 4K HDMI
View β†’
SABRENT 10-Port USB 3.0 Hub
60W powered
View β†’
Anker 4-Port USB 3.0 Hub
Compact
View β†’
PANPEO 7-Port USB 3.0 Hub
USB splitter
View β†’
Amazon Basics USB-C to HDMI
4K β€” 6ft
View β†’
96W USB-C Charger
MacBook Pro
View β†’
200W GaN 6-Port Charger
USB-C charging station
View β†’
18-Outlet Surge Protector
20ft power strip
View β†’
Gonine AC Power β€” Sony
NP-FW50 dummy battery
View β†’
HY1C AC Power β€” Canon
LP-E17 dummy battery
View β†’
llano LP-E17 Batteries
With charger β€” Canon
View β†’
Energizer Rechargeable AA
With charger
View β†’