:root {
  --ink: #0b1720;
  --navy: #102231;
  --cream: #f3efe5;
  --paper: #faf8f2;
  --orange: #ff5a22;
  --acid: #d9ff3f;
  --muted: #71808a;
  --line: rgba(11, 23, 32, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 20; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }

.site-header { height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 0 4vw; background: var(--paper); border-bottom: 1px solid var(--line); position: relative; z-index: 10; }
.brand { display: flex; gap: 10px; align-items: center; font-weight: 900; line-height: .85; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; background: var(--orange); border-radius: 50%; color: white; font-size: 14px; transform: rotate(-8deg); }
nav { display: flex; gap: 36px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
nav a { position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--orange); transition: right .25s; }
nav a:hover::after { right: 0; }
.header-cta { background: var(--ink); color: white; padding: 14px 20px; border-radius: 100px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.header-cta span { margin-left: 14px; color: var(--acid); }

.hero { height: calc(100vh - 84px); min-height: 700px; position: relative; overflow: hidden; color: white; background: var(--navy); }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: saturate(.75) contrast(1.08); }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,15,22,.92) 0%, rgba(6,15,22,.55) 42%, rgba(6,15,22,.06) 72%), linear-gradient(0deg, rgba(6,15,22,.62), transparent 45%); }
.hero-copy { position: absolute; left: 6vw; top: 10%; max-width: 700px; }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .19em; font-size: 11px; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); }
.eyebrow span { width: 26px; height: 2px; background: var(--orange); }
.hero h1, h2 { margin: 0; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -.035em; line-height: .79; }
.hero h1 { font-size: clamp(112px, 16vw, 250px); margin-top: 7vh; }
em { font-style: normal; color: var(--orange); }
.hero-deck { margin: 24px 0 28px; font-size: clamp(18px, 1.7vw, 25px); line-height: 1.25; font-weight: 700; letter-spacing: -.02em; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 210px; padding: 17px 19px; border-radius: 100px; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 900; }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--acid); }
.text-link { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 5px; }
.hero-meta { position: absolute; right: 4vw; bottom: 48px; display: flex; gap: 1px; }
.hero-meta div { width: 145px; min-height: 92px; padding: 16px; background: rgba(10,22,31,.84); backdrop-filter: blur(10px); border-top: 2px solid var(--orange); }
.hero-meta span, .team-facts span { display: block; color: rgba(255,255,255,.52); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 10px; }
.hero-meta strong { font-size: 14px; line-height: 1.1; text-transform: uppercase; }
.photo-credit { position: absolute; right: 4vw; top: 22px; writing-mode: vertical-rl; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; opacity: .55; }

.ticker { background: var(--acid); overflow: hidden; border-bottom: 1px solid var(--ink); }
.ticker-track { display: flex; gap: 24px; align-items: center; width: max-content; padding: 14px 0; animation: ticker 26s linear infinite; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.ticker-track i { color: var(--orange); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 110px 6vw; }
.section-label { display: flex; align-items: center; gap: 11px; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: 10px; margin-bottom: 64px; }
.section-label span { color: var(--orange); }
.section-label::after { content: ""; height: 1px; width: 62px; background: currentColor; opacity: .4; }
.section-label.light { color: rgba(255,255,255,.6); }
.intro-grid { display: grid; grid-template-columns: minmax(280px, .72fr) 1.3fr; gap: 8vw; align-items: center; }
.portrait-wrap { position: relative; max-width: 510px; padding: 20px 20px 0 0; }
.portrait-wrap::before { content: ""; position: absolute; right: 0; top: 0; width: 65%; height: 70%; background: var(--acid); z-index: -1; }
.portrait-wrap img { width: 100%; filter: grayscale(1) contrast(1.05); }
.portrait-tag { position: absolute; right: -8px; bottom: 30px; padding: 12px 16px; background: var(--orange); color: white; transform: rotate(-4deg); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.kicker { color: var(--orange); }
.intro-copy h2, .timeline-head h2, .team-grid h2, .news h2, .watch h2, .shop h2 { font-size: clamp(70px, 8.3vw, 140px); }
.intro-copy .lead { max-width: 680px; margin: 42px 0 34px; font-size: clamp(22px, 2vw, 32px); line-height: 1.18; letter-spacing: -.025em; font-weight: 700; }
.columns { max-width: 760px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; color: #52616a; font-size: 14px; line-height: 1.65; }

.timeline-section { background: var(--ink); color: white; overflow: hidden; }
.timeline-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 70px; }
.timeline-head > p { font-size: 16px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; line-height: 1.45; }
.timeline-head h2 { text-align: right; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.16); }
.timeline-card { position: relative; min-height: 440px; padding: 30px; border-right: 1px solid rgba(255,255,255,.16); transition: background .25s, color .25s; }
.timeline-card:last-child { border-right: 0; }
.timeline-card:hover, .timeline-card.current { background: var(--orange); color: var(--ink); }
.timeline-card .year { font-size: 9px; text-transform: uppercase; letter-spacing: .14em; opacity: .58; }
.timeline-card .line { display: block; width: 100%; height: 1px; background: currentColor; opacity: .25; margin: 24px 0 48px; }
.timeline-card h3 { font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; text-transform: uppercase; font-size: clamp(34px, 3.2vw, 54px); line-height: .88; letter-spacing: -.02em; margin: 0; }
.timeline-card p { margin-top: 28px; font-size: 12px; line-height: 1.6; opacity: .68; max-width: 260px; }
.card-no { position: absolute; bottom: 24px; right: 25px; font-size: 11px; font-weight: 900; opacity: .5; }
.source-note { margin: 18px 0 0; color: rgba(255,255,255,.38); font-size: 10px; }

.current-team { position: relative; min-height: 680px; overflow: hidden; background: var(--cream); }
.team-monogram { position: absolute; right: -2vw; bottom: -11vw; font: 900 43vw/.7 Impact, sans-serif; color: rgba(16,34,49,.055); letter-spacing: -.1em; }
.team-grid { position: relative; display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 8vw; }
.team-facts { border-top: 1px solid var(--line); }
.team-facts div { display: grid; grid-template-columns: 1fr 1.3fr; padding: 18px 0; border-bottom: 1px solid var(--line); }
.team-facts span { color: var(--muted); margin: 0; }
.team-facts strong { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.team-facts a { display: flex; justify-content: space-between; margin-top: 24px; font-size: 11px; text-transform: uppercase; font-weight: 900; letter-spacing: .1em; }
.team-facts a span { color: var(--orange); font-size: 18px; }

.news { background: var(--paper); }
.news-header { display: grid; grid-template-columns: .42fr 1fr; align-items: start; }
.news-header .section-label { margin: 5px 0 0; }
.live-dot { display: inline-block; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,90,34,.13); margin-right: 8px; }
.news-grid { margin-top: 70px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; }
.news-lead { background: var(--ink); color: white; display: grid; grid-template-columns: .88fr 1.12fr; min-height: 510px; }
.news-art { overflow: hidden; position: relative; background: var(--orange); }
.news-art-cj::before, .news-art-cj::after { content: ""; position: absolute; border: 1px solid rgba(11,23,32,.35); border-radius: 50%; }
.news-art-cj::before { width: 380px; height: 380px; left: -180px; top: 65px; }
.news-art-cj::after { width: 250px; height: 250px; right: -70px; bottom: -90px; }
.news-art-cj span { position: absolute; font: 900 18vw/.8 Impact, sans-serif; bottom: -15px; left: 22px; letter-spacing: -.08em; transform: rotate(-7deg); }
.news-copy { padding: 45px 38px; display: flex; flex-direction: column; }
.tag { font-size: 9px; color: var(--orange); text-transform: uppercase; letter-spacing: .15em; font-weight: 900; }
.news-copy h3, .news-card h3 { font-size: clamp(28px, 3vw, 50px); line-height: .98; letter-spacing: -.04em; margin: 54px 0 22px; }
.news-copy p, .news-card p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.58); }
.read-more { margin-top: auto; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.news-stack { display: grid; gap: 12px; }
.news-card { position: relative; background: var(--cream); border: 1px solid var(--line); padding: 25px 28px; min-height: 160px; transition: transform .25s, background .25s; }
.news-card:hover { transform: translateX(-8px); background: var(--acid); }
.news-card h3 { font-size: 22px; margin: 25px 35px 8px 0; }
.news-card p { color: var(--muted); margin: 0; }
.news-card .arrow { position: absolute; right: 23px; top: 21px; color: var(--orange); }

.watch { background: var(--navy); color: white; }
.watch-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 65px; }
.watch-head p { max-width: 310px; color: rgba(255,255,255,.55); line-height: 1.6; font-size: 13px; }
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.media-card { background: #182d3c; display: grid; grid-template-columns: 42% 58%; min-height: 250px; transition: transform .25s; }
.media-card:hover { transform: translateY(-6px); }
.media-card > div:last-child { padding: 25px; }
.media-card > div > span { color: var(--orange); font-size: 9px; text-transform: uppercase; font-weight: 800; letter-spacing: .14em; }
.media-card h3 { font-size: 24px; margin: 28px 0 9px; line-height: 1; }
.media-card p { color: rgba(255,255,255,.46); font-size: 12px; line-height: 1.5; }
.media-visual { position: relative; display: grid; place-items: center; overflow: hidden; min-height: 250px; }
.media-visual::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,255,255,.06) 14px 15px); }
.play { position: absolute; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--ink); z-index: 2; font-size: 13px; }
.media-visual strong { font: 900 9vw/.8 Impact, sans-serif; opacity: .16; }
.podcast-visual { background: var(--orange); color: var(--ink); }
.clip-visual { background: linear-gradient(145deg, #d9ff3f, #6aa93b); }
.nxl-visual { background: #e5e8eb; color: var(--navy); }
.iron-visual { background: #080b0d; color: var(--orange); }

.shop { background: var(--cream); }
.shop-top { display: flex; justify-content: space-between; align-items: start; }
.cart-button { border: 1px solid var(--ink); border-radius: 100px; padding: 11px 15px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.cart-button span { display: inline-grid; place-items: center; width: 22px; height: 22px; background: var(--orange); color: white; border-radius: 50%; margin-left: 8px; }
.shop-head { display: flex; align-items: end; justify-content: space-between; }
.shop-head p { max-width: 370px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 70px; }
.product-art { height: 390px; display: grid; place-items: center; overflow: hidden; position: relative; background: #d9d7cf; }
.product-art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.65), transparent 30%); }
.shirt-shape { width: 220px; height: 270px; background: var(--ink); color: white; clip-path: polygon(23% 0, 38% 8%, 62% 8%, 77% 0, 100% 18%, 84% 38%, 77% 31%, 77% 100%, 23% 100%, 23% 31%, 16% 38%, 0 18%); display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(-4deg); position: relative; z-index: 1; filter: drop-shadow(15px 20px 12px rgba(0,0,0,.18)); }
.shirt-shape span { font: 900 78px/.8 Impact, sans-serif; color: var(--orange); }
.shirt-shape small { font-size: 8px; letter-spacing: .14em; }
.cap-shape { position: relative; z-index: 1; width: 230px; height: 130px; border-radius: 110px 110px 20px 20px; background: var(--orange); transform: rotate(7deg); display: grid; place-items: center; box-shadow: 15px 20px 20px rgba(0,0,0,.18); }
.cap-shape::after { content: ""; position: absolute; right: -85px; bottom: -15px; width: 145px; height: 52px; border-radius: 50%; background: var(--ink); transform: rotate(8deg); z-index: -1; }
.cap-shape span { font-weight: 900; font-size: 21px; line-height: .8; transform: skew(-6deg); }
.poster-art { background: var(--ink); }
.poster-shape { width: 205px; height: 290px; background: var(--acid); border: 9px solid white; position: relative; z-index: 1; padding: 15px; box-shadow: 15px 20px 20px rgba(0,0,0,.3); transform: rotate(4deg); }
.poster-shape span { font: 900 72px/.8 Impact, sans-serif; }
.poster-shape strong { display: block; position: absolute; right: 5px; bottom: 12px; font: 900 155px/.7 Impact, sans-serif; color: var(--orange); }
.poster-shape small { position: absolute; left: 18px; bottom: 18px; z-index: 1; font-weight: 900; writing-mode: vertical-rl; font-size: 8px; letter-spacing: .12em; }
.product-info { display: flex; justify-content: space-between; align-items: end; padding: 18px 0; border-bottom: 1px solid var(--line); }
.product-info span { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.product-info h3 { font-size: 17px; margin: 7px 0 0; }
.product-info strong { font-size: 13px; }
.add-button { width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; padding: 15px 0; cursor: pointer; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 900; }
.add-button:hover { color: var(--orange); }

footer { background: #070e13; color: white; padding: 70px 6vw; display: grid; grid-template-columns: .8fr 1.2fr .6fr; gap: 8vw; align-items: end; }
.footer-brand { font: 900 9vw/.8 Impact, sans-serif; letter-spacing: -.05em; }
.footer-copy { color: rgba(255,255,255,.4); font-size: 10px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 14px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.toast { position: fixed; right: 24px; bottom: 24px; background: var(--ink); color: white; padding: 16px 20px; border-left: 4px solid var(--orange); transform: translateY(130%); transition: transform .3s; z-index: 30; font-size: 12px; }
.toast.show { transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s, transform .65s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { min-height: 720px; }
  .hero-copy { top: 12%; }
  .hero h1 { margin-top: 12vh; font-size: clamp(104px, 25vw, 180px); }
  .hero-meta { left: 6vw; right: auto; bottom: 25px; }
  .hero-meta div { width: 120px; }
  .intro-grid, .team-grid, .news-grid, .news-header { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-card:nth-child(2) { border-right: 0; }
  .timeline-card { border-bottom: 1px solid rgba(255,255,255,.16); }
  .team-facts { margin-top: 40px; }
  .news-header .section-label { margin-bottom: 60px; }
  .media-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 70px; }
  .header-cta { padding: 12px 15px; }
  .hero { height: 760px; min-height: 0; }
  .hero-wash { background: linear-gradient(90deg, rgba(6,15,22,.88), rgba(6,15,22,.15)), linear-gradient(0deg, rgba(6,15,22,.8), transparent 60%); }
  .hero-image { object-position: 55% center; }
  .hero-copy { left: 7vw; right: 7vw; top: 8%; }
  .hero h1 { font-size: 96px; margin-top: 15vh; }
  .hero-deck { font-size: 17px; }
  .hero-meta { display: none; }
  .photo-credit { display: none; }
  .section { padding: 80px 7vw; }
  .section-label { margin-bottom: 45px; }
  .intro-grid { gap: 55px; }
  .intro-copy h2, .timeline-head h2, .team-grid h2, .news h2, .watch h2, .shop h2 { font-size: 59px; }
  .columns { grid-template-columns: 1fr; gap: 8px; }
  .timeline-head, .watch-head, .shop-head { display: block; }
  .timeline-head h2 { text-align: left; margin-top: 30px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-card { min-height: 360px; border-right: 0; }
  .news-lead { grid-template-columns: 1fr; }
  .news-art { min-height: 290px; }
  .news-art-cj span { font-size: 48vw; }
  .media-card { grid-template-columns: 1fr; }
  .media-card > div:last-child { min-height: 190px; }
  .shop-head p, .watch-head p { margin-top: 28px; }
  .products { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-brand { font-size: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
